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

View File

@@ -0,0 +1,19 @@
abstract class BaseEntity{
static String id = 'id';
static String title = 'Title';
static String creationDate = 'CreationDate';
static String lastEditDate = 'LastEditDate';
static String get getId{
return id;
}
static String get getTitle{
return title;
}
static String get getCreationDate{
return creationDate;
}
static String get getLastEditDate{
return lastEditDate;
}
}