TetraStats/lib/data_objects/p1nkl0bst3r.dart

17 lines
267 B
Dart
Raw Normal View History

// p1nkl0bst3r data objects
class Cutoffs{
2024-08-17 23:39:20 +00:00
DateTime ts;
Map<String, double> tr;
Map<String, double> glicko;
2024-08-17 23:39:20 +00:00
Map<String, double> gxe;
2024-08-17 23:39:20 +00:00
Cutoffs(this.ts, this.tr, this.glicko, this.gxe);
}
class TopTr{
String id;
double? tr;
TopTr(this.id, this.tr);
}