feat: honestly forgot

This commit is contained in:
Alzalia 2025-08-11 22:41:15 +02:00
parent 48bcf0b1f8
commit da953ba651
19 changed files with 1097 additions and 244 deletions

View file

@ -1,5 +1,44 @@
enum BalState { pending, ongoing, ended }
class Bal {
Bal({required this.id});
Bal({
required this.id,
required this.name,
required this.state,
required this.startTime,
required this.endTime,
});
int id;
String name;
BalState state;
DateTime startTime;
DateTime endTime;
factory Bal.fromJSON(Map<String, dynamic> json) => Bal(
id: json["id"],
name: json["name"],
state: switch (json["state"]) {
"Pending" => BalState.pending,
"Ongoing" => BalState.ongoing,
_ => BalState.ended,
},
startTime: DateTime.fromMillisecondsSinceEpoch(
json["start_timestamp"] * 1000,
isUtc: true,
),
endTime: DateTime.fromMillisecondsSinceEpoch(
json["end_timestamp"] * 1000,
isUtc: true,
),
);
int compareTo(Bal other) {
if (state.index == other.state.index) {
return 0;
} else if (state.index > other.state.index) {
return state.index;
}
return -state.index;
}
}