mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-27 04:26:58 +08:00
11
lib/models_new/msg/msg_dnd/uid_setting.dart
Normal file
11
lib/models_new/msg/msg_dnd/uid_setting.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class UidSetting {
|
||||
int? id;
|
||||
int? setting;
|
||||
|
||||
UidSetting({this.id, this.setting});
|
||||
|
||||
factory UidSetting.fromJson(Map<String, dynamic> json) => UidSetting(
|
||||
id: json['id'] as int?,
|
||||
setting: json['setting'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user