merge
This commit is contained in:
12
lib/model/note.dart
Normal file
12
lib/model/note.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
import 'base_entity.dart';
|
||||
|
||||
const String noteTable = 'note';
|
||||
|
||||
class Note extends BaseEntity {
|
||||
static String id = BaseEntity.getId;
|
||||
static String title = BaseEntity.getTitle;
|
||||
static String creationDate = BaseEntity.getCreationDate;
|
||||
static String lastModificationDate = BaseEntity.getLastEditDate;
|
||||
static String arrayPromemoria = '';
|
||||
static String description = '';
|
||||
}
|
||||
Reference in New Issue
Block a user