mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-24 01:58:36 +00:00
15
lib/models_new/fav/fav_pgc/producer.dart
Normal file
15
lib/models_new/fav/fav_pgc/producer.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
class Producer {
|
||||
int? mid;
|
||||
int? type;
|
||||
int? isContribute;
|
||||
String? title;
|
||||
|
||||
Producer({this.mid, this.type, this.isContribute, this.title});
|
||||
|
||||
factory Producer.fromJson(Map<String, dynamic> json) => Producer(
|
||||
mid: json['mid'] as int?,
|
||||
type: json['type'] as int?,
|
||||
isContribute: json['is_contribute'] as int?,
|
||||
title: json['title'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user