历史记录

This commit is contained in:
toly
2023-05-03 15:21:44 +08:00
parent 1893c43a9f
commit b75bf0227f
6 changed files with 101 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
class MeritRecord {
final String id;
final int timestamp;
final int value;
final String image;
final String audio;
MeritRecord(this.id, this.timestamp, this.value, this.image, this.audio);
}