mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-12 22:45:13 +01:00
12 lines
309 B
Dart
12 lines
309 B
Dart
|
class ShortURL_VisitsSummary {
|
||
|
int total;
|
||
|
int nonBots;
|
||
|
int bots;
|
||
|
|
||
|
ShortURL_VisitsSummary(this.total, this.nonBots, this.bots);
|
||
|
|
||
|
ShortURL_VisitsSummary.fromJson(Map<String, dynamic> json):
|
||
|
total = json["total"] as int,
|
||
|
nonBots = json["nonBots"] as int,
|
||
|
bots = json["bots"] as int;
|
||
|
}
|