mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-30 23:58:13 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
11
lib/models/pgc/pgc_info_model/positive.dart
Normal file
11
lib/models/pgc/pgc_info_model/positive.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Positive {
|
||||
int? id;
|
||||
String? title;
|
||||
|
||||
Positive({this.id, this.title});
|
||||
|
||||
factory Positive.fromJson(Map<String, dynamic> json) => Positive(
|
||||
id: json['id'] as int?,
|
||||
title: json['title'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user