mirror of
https://github.com/haorendashu/nowser.git
synced 2026-02-21 17:34:25 +01:00
29 lines
360 B
Dart
29 lines
360 B
Dart
class AuthLog {
|
|
int id;
|
|
|
|
int appId;
|
|
|
|
int authType;
|
|
|
|
int? eventKind;
|
|
|
|
String? title;
|
|
|
|
String? content;
|
|
|
|
int authResult;
|
|
|
|
int createdAt;
|
|
|
|
AuthLog({
|
|
required this.id,
|
|
required this.appId,
|
|
required this.authType,
|
|
this.eventKind,
|
|
this.title,
|
|
this.content,
|
|
required this.authResult,
|
|
required this.createdAt,
|
|
});
|
|
}
|