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