mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-12 22:45:13 +01:00
18 lines
430 B
Dart
18 lines
430 B
Dart
class ShortURL_DeviceLongUrls {
|
|
final String? android;
|
|
final String? ios;
|
|
final String? desktop;
|
|
|
|
ShortURL_DeviceLongUrls(this.android, this.ios, this.desktop);
|
|
|
|
ShortURL_DeviceLongUrls.fromJson(Map<String, dynamic> json)
|
|
: android = json["android"],
|
|
ios = json["ios"],
|
|
desktop = json["desktop"];
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
"android": android,
|
|
"ios": ios,
|
|
"desktop": desktop
|
|
};
|
|
} |