new directory

This commit is contained in:
2023-09-27 13:50:56 +02:00
parent 58e013a709
commit ecf7011302
8 changed files with 3 additions and 2 deletions

8
lib/model/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;
}