No cache mod for web and other platforms

This commit is contained in:
Sewmina
2022-03-17 04:55:25 +05:30
parent 03cb6b81c4
commit 68c9d1a280
6 changed files with 676 additions and 315 deletions

View File

@@ -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);