// p1nkl0bst3r data objects class Cutoffs{ DateTime ts; Map tr; Map glicko; Map gxe; Cutoffs(this.ts, this.tr, this.glicko, this.gxe); } class TopTr{ String id; double? tr; TopTr(this.id, this.tr); }