Summary page done

This commit is contained in:
warlock
2022-03-02 09:24:26 +05:30
parent 8c7ea9b86e
commit 4576957b4c
16 changed files with 974 additions and 409 deletions

View File

@@ -31,15 +31,17 @@ class TaskType{
class Activity{
Activity(this.taskType, this.startTime, this.endTime);
Activity(this.taskType, this.startTime, this.endTime, {this.metadata});
TaskType taskType;
DateTime startTime;
DateTime endTime;
String? metadata;
static String colType = "type";
static String colStartTime = "s_time";
static String colEndTime = "e_time";
static String colMetadata= "metadata";
}
class InitialData{