mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
11
lib/models_new/msg/msg_sys/source.dart
Normal file
11
lib/models_new/msg/msg_sys/source.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Source {
|
||||
String? name;
|
||||
String? logo;
|
||||
|
||||
Source({this.name, this.logo});
|
||||
|
||||
factory Source.fromJson(Map<String, dynamic> json) => Source(
|
||||
name: json['name'] as String?,
|
||||
logo: json['logo'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user