No cache mod for web and other platforms
This commit is contained in:
@@ -85,10 +85,30 @@ class InitialData{
|
||||
|
||||
|
||||
class Queries{
|
||||
Queries(this.link,this.data);
|
||||
|
||||
String link;
|
||||
String data;
|
||||
|
||||
static String colLink= "file";
|
||||
static String colData = "data";
|
||||
}
|
||||
|
||||
class Project{
|
||||
Project(this.name, this.category, this.steps, this.deadline);
|
||||
|
||||
String name;
|
||||
String category;
|
||||
Category? cat;
|
||||
List<ProjectStep> steps;
|
||||
DateTime deadline;
|
||||
|
||||
static String colName = "name";
|
||||
static String colCat="category_id";
|
||||
static String colSteps = "steps";
|
||||
static String colDeadline = "deadline";
|
||||
}
|
||||
|
||||
class ProjectStep{
|
||||
ProjectStep(this.stepName,this.eta,this.progress);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user