Files
PiliPlus/lib/models_new/fav/fav_topic/topic_item.dart
2026-04-05 12:11:22 +08:00

15 lines
247 B
Dart

class FavTopicItem {
int? id;
String? name;
FavTopicItem({
this.id,
this.name,
});
factory FavTopicItem.fromJson(Map<String, dynamic> json) => FavTopicItem(
id: json['id'] as int?,
name: json['name'] as String?,
);
}