From 9f26bc8595be3cacf5e8f415c2e993ba40214c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20Ku=CC=88ng?= Date: Wed, 27 Sep 2023 15:17:16 +0200 Subject: [PATCH] note entity --- lib/model/note.dart | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/model/note.dart b/lib/model/note.dart index ece0167..9d13582 100644 --- a/lib/model/note.dart +++ b/lib/model/note.dart @@ -1,8 +1,9 @@ import 'base_entity.dart'; -class Note extends BaseEntity{ +class Note extends BaseEntity { static String id = BaseEntity.getId; - static String Title = BaseEntity.getTitle; - static String CreationDate = BaseEntity.getCreationDate; - -} \ No newline at end of file + static String title = BaseEntity.getTitle; + static String creationDate = BaseEntity.getCreationDate; + static String lastModificationDate = "LastModificationDate"; + static String description = ""; +}