feat: msg link setting

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-12 17:43:28 +08:00
parent 964668c982
commit 9a97a5d110
21 changed files with 925 additions and 189 deletions

View File

@@ -0,0 +1,16 @@
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?,
);
Map<String, dynamic> toJson() => {
'id': id,
'setting': setting,
};
}