13 lines
259 B
Dart
13 lines
259 B
Dart
class CreateTodoParams {
|
|
final String title;
|
|
final String? description;
|
|
final String priority;
|
|
final DateTime? dueDate;
|
|
|
|
const CreateTodoParams({
|
|
required this.title,
|
|
this.description,
|
|
this.priority = 'medium',
|
|
this.dueDate,
|
|
});
|
|
}
|