mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 10:36:24 +08:00
10 lines
161 B
Dart
10 lines
161 B
Dart
class Ugc {
|
|
int? firstCid;
|
|
|
|
Ugc({this.firstCid});
|
|
|
|
factory Ugc.fromJson(Map<String, dynamic> json) => Ugc(
|
|
firstCid: json['first_cid'] as int?,
|
|
);
|
|
}
|