mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 19:14:42 +08:00
29
lib/models_new/fav/fav_note/arc.dart
Normal file
29
lib/models_new/fav/fav_note/arc.dart
Normal file
@@ -0,0 +1,29 @@
|
||||
class Arc {
|
||||
int? oid;
|
||||
String? bvid;
|
||||
String? pic;
|
||||
String? desc;
|
||||
int? status;
|
||||
int? oidType;
|
||||
int? aid;
|
||||
|
||||
Arc({
|
||||
this.oid,
|
||||
this.bvid,
|
||||
this.pic,
|
||||
this.desc,
|
||||
this.status,
|
||||
this.oidType,
|
||||
this.aid,
|
||||
});
|
||||
|
||||
factory Arc.fromJson(Map<String, dynamic> json) => Arc(
|
||||
oid: json['oid'] as int?,
|
||||
bvid: json['bvid'] as String?,
|
||||
pic: json['pic'] as String?,
|
||||
desc: json['desc'] as String?,
|
||||
status: json['status'] as int?,
|
||||
oidType: json['oid_type'] as int?,
|
||||
aid: json['aid'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user