mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-30 23:58:13 +08:00
9
lib/models_new/fav/fav_detail/ugc.dart
Normal file
9
lib/models_new/fav/fav_detail/ugc.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Ugc {
|
||||
int? firstCid;
|
||||
|
||||
Ugc({this.firstCid});
|
||||
|
||||
factory Ugc.fromJson(Map<String, dynamic> json) => Ugc(
|
||||
firstCid: json['first_cid'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user