13 lines
213 B
Dart
13 lines
213 B
Dart
|
import 'package:hive/hive.dart';
|
||
|
part 'reminder.g.dart';
|
||
|
|
||
|
@HiveType(typeId: 0)
|
||
|
class ReminderEntity {
|
||
|
@HiveField(0)
|
||
|
String notes;
|
||
|
@HiveField(1)
|
||
|
String title;
|
||
|
|
||
|
ReminderEntity({this.notes, this.title});
|
||
|
}
|