Files
GetStuffDone/lib/models/todo.dart
2023-11-08 12:57:45 +01:00

21 lines
319 B
Dart

import 'package:isar/isar.dart';
part 'todo.g.dart';
@collection
class Todo {
final int id;
String title;
String description;
final DateTime createdAt;
bool done;
Todo({
required this.id,
required this.title,
required this.createdAt,
this.description = '',
this.done = false,
});
}