mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
12 lines
196 B
Dart
12 lines
196 B
Dart
class Ed {
|
|
int? end;
|
|
int? start;
|
|
|
|
Ed({this.end, this.start});
|
|
|
|
factory Ed.fromJson(Map<String, dynamic> json) => Ed(
|
|
end: json['end'] as int?,
|
|
start: json['start'] as int?,
|
|
);
|
|
}
|