shlink-manager/lib/API/Classes/ShortURL/ShortURL_VisitsSummary.dart

12 lines
309 B
Dart
Raw Normal View History

2023-06-26 23:40:05 +02:00
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;
}