mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-08 19:17:49 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
11
lib/models/stein_edgeinfo/video.dart
Normal file
11
lib/models/stein_edgeinfo/video.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user