mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
12 lines
222 B
Dart
12 lines
222 B
Dart
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?,
|
|
);
|
|
}
|