Token management, Factory reset, UX/UI Improvements
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
part 'logentry.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class LogEntry {
|
||||
DateTime time;
|
||||
String uid;
|
||||
|
||||
LogEntry({required this.time, required this.uid});
|
||||
|
||||
factory LogEntry.fromJson(Map<String, dynamic> json) =>
|
||||
_$LogEntryFromJson(json);
|
||||
|
||||
Map<String, dynamic> toJson() => _$LogEntryToJson(this);
|
||||
}
|
||||
Reference in New Issue
Block a user