mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-01 15:49:49 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
11
lib/models/pgc/pgc_info_model/ed.dart
Normal file
11
lib/models/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