boooooo
This commit is contained in:
@@ -1,19 +1,8 @@
|
||||
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;
|
||||
}
|
||||
String id = 'id';
|
||||
String title = 'Title';
|
||||
String creationDate = 'CreationDate';
|
||||
String lastEditDate = 'LastEditDate';
|
||||
|
||||
BaseEntity();
|
||||
}
|
||||
@@ -12,7 +12,7 @@ class Promemoria extends BaseEntity {
|
||||
|
||||
static Color color = Color.none;
|
||||
|
||||
Promemoria(String description){
|
||||
Promemoria(String description) : super(){
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user