This commit is contained in:
Tito Arrigo
2023-09-28 13:04:42 +02:00
parent e061871c4f
commit c2824c99a4
13 changed files with 262 additions and 20 deletions

12
lib/model/note.dart Normal file
View File

@@ -0,0 +1,12 @@
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 = BaseEntity.getLastEditDate;
static String arrayPromemoria = '';
static String description = '';
}