Journal section added

This commit is contained in:
Sewmina
2022-03-29 21:36:11 +05:30
parent cad1b5db5a
commit 4335ce43db
8 changed files with 673 additions and 62 deletions

View File

@@ -142,6 +142,19 @@ class ProjectStep{
DateTime? finishedDate;
}
class Journal{
Journal(this.id, this.day, {this.title, this.description});
String id;
DateTime day;
String? title;
String? description;
static String colTitle = 'Title';
static String colDescription = 'Desc';
}