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