first entity

This commit is contained in:
2023-09-27 08:31:00 +02:00
parent 4f4756a605
commit ce16467f1d
6 changed files with 65 additions and 0 deletions

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;
}