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

8
lib/database/note.dart Normal file
View File

@@ -0,0 +1,8 @@
import 'base_entity.dart';
class Note extends BaseEntity{
static String id = BaseEntity.getId;
static String Title = BaseEntity.getTitle;
static String CreationDate = BaseEntity.getCreationDate;
}