first entity
This commit is contained in:
11
lib/database/promemoria.dart
Normal file
11
lib/database/promemoria.dart
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user