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