welcom page and home page init

This commit is contained in:
2023-09-27 09:13:34 +02:00
parent d598a41475
commit 9314d5f4e0
9 changed files with 146 additions and 107 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;
}