mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
10 lines
178 B
Dart
10 lines
178 B
Dart
class NewTopic {
|
|
String? name;
|
|
|
|
NewTopic({this.name});
|
|
|
|
factory NewTopic.fromJson(Map<String, dynamic> json) => NewTopic(
|
|
name: json['name'] as String?,
|
|
);
|
|
}
|