Hourglass improved + projects delete

This commit is contained in:
Sewmina
2022-03-23 19:30:32 +05:30
parent aa72b5dc92
commit 9f976b1e33
7 changed files with 145 additions and 44 deletions

View File

@@ -105,12 +105,13 @@ class Queries{
}
class Project{
Project(this.name, this.category, this.steps, this.deadline,{this.cat});
Project(this.name, this.category, this.steps,this.eta, this.deadline,{this.cat});
String name;
String category;
Category? cat;
List<ProjectStep> steps;
int? eta;
DateTime deadline;
static String colName = "name";