note entity

This commit is contained in:
2023-09-27 15:17:16 +02:00
parent c35684c8f1
commit 9f26bc8595

View File

@@ -2,7 +2,8 @@ import 'base_entity.dart';
class Note extends BaseEntity {
static String id = BaseEntity.getId;
static String Title = BaseEntity.getTitle;
static String CreationDate = BaseEntity.getCreationDate;
static String title = BaseEntity.getTitle;
static String creationDate = BaseEntity.getCreationDate;
static String lastModificationDate = "LastModificationDate";
static String description = "";
}