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