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 = ""; +}