mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-12 22:45:13 +01:00
14 lines
348 B
Dart
14 lines
348 B
Dart
|
import 'dart:convert';
|
||
|
|
||
|
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"];
|
||
|
}
|