mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
13
lib/models_new/pgc/pgc_info_model/activity.dart
Normal file
13
lib/models_new/pgc/pgc_info_model/activity.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class Activity {
|
||||
String? headBgUrl;
|
||||
int? id;
|
||||
String? title;
|
||||
|
||||
Activity({this.headBgUrl, this.id, this.title});
|
||||
|
||||
factory Activity.fromJson(Map<String, dynamic> json) => Activity(
|
||||
headBgUrl: json['head_bg_url'] as String?,
|
||||
id: json['id'] as int?,
|
||||
title: json['title'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user