welcom page and home page init

This commit is contained in:
2023-09-27 09:13:34 +02:00
parent d598a41475
commit 9314d5f4e0
9 changed files with 146 additions and 107 deletions

11
lib/model/promemoria.dart Normal file
View File

@@ -0,0 +1,11 @@
import 'base_entity.dart';
import 'identifiers/enum/priority.dart';
class Note extends BaseEntity{
static String id = BaseEntity.getId;
static String title = BaseEntity.getTitle;
static String creationDate = BaseEntity.getCreationDate;
static String expirationDate = 'expirationDate';
Priority priority = Priority.low;
}