This commit is contained in:
2023-09-28 08:47:50 +02:00
parent 4fdb310e31
commit 9b3634e1cd
2 changed files with 14 additions and 7 deletions

View File

@@ -1,9 +1,11 @@
import 'base_entity.dart';
const String noteTable = 'note';
class Note extends BaseEntity {
static String id = BaseEntity.getId;
static String title = BaseEntity.getTitle;
static String creationDate = BaseEntity.getCreationDate;
static String lastModificationDate = "LastModificationDate";
static String description = "";
static String lastModificationDate = BaseEntity.getLastEditDate;
static String description = '';
}