Todo basics added

This commit is contained in:
Sewmina
2022-03-31 15:12:31 +05:30
parent ead2c466d1
commit 62ae8bad01
12 changed files with 1698 additions and 830 deletions

View File

@@ -155,7 +155,21 @@ class Journal{
static String colDescription = 'Desc';
}
class Todo{
Todo(this.id, this.category,this.metadata, this.dueDate, {this.notificationTime, this.task});
String id;
String category;
TaskType? task;
String metadata;
DateTime dueDate;
DateTime? notificationTime;
static String colCat = 'category';
static String colMetadata = 'metadata';
static String colDueDate = 'due_date';
static String colNotificationTime = 'notification_time';
}
class Settings{