mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
11
lib/models_new/pgc/pgc_info_model/ed.dart
Normal file
11
lib/models_new/pgc/pgc_info_model/ed.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user