mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 18:03:12 +00:00
bf79fb1adf
- Delete SSH generation leftovers - Migrate users box to an encrypted box
20 lines
377 B
Dart
20 lines
377 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'api_token.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class ApiToken {
|
|
ApiToken({
|
|
required this.name,
|
|
required this.date,
|
|
required this.is_caller,
|
|
});
|
|
|
|
final String name;
|
|
final DateTime date;
|
|
final bool is_caller;
|
|
|
|
factory ApiToken.fromJson(Map<String, dynamic> json) =>
|
|
_$ApiTokenFromJson(json);
|
|
}
|