opt models

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-04 15:20:35 +08:00
parent f50b1d2beb
commit b960359a39
858 changed files with 11000 additions and 12588 deletions

View File

@@ -0,0 +1,29 @@
class VideoShotData {
String? pvdata;
int? imgXLen;
int? imgYLen;
int? imgXSize;
int? imgYSize;
List<String>? image;
List<int>? index;
VideoShotData({
this.pvdata,
this.imgXLen,
this.imgYLen,
this.imgXSize,
this.imgYSize,
this.image,
this.index,
});
factory VideoShotData.fromJson(Map<String, dynamic> json) => VideoShotData(
pvdata: json["pvdata"],
imgXLen: json["img_x_len"],
imgYLen: json["img_y_len"],
imgXSize: json["img_x_size"],
imgYSize: json["img_y_size"],
image: (json["image"] as List?)?.cast(),
index: (json["index"] as List?)?.cast(),
);
}