mirror of
https://github.com/Uttkarsh-raj/Plannerly.git
synced 2025-12-05 22:06:27 +02:00
22 lines
502 B
Dart
22 lines
502 B
Dart
|
|
// ignore_for_file: public_member_api_docs, sort_constructors_first
|
||
|
|
class TaskModel {
|
||
|
|
final String taskId;
|
||
|
|
final String userId;
|
||
|
|
final String title;
|
||
|
|
final String description;
|
||
|
|
final String time;
|
||
|
|
final String date;
|
||
|
|
final bool completed;
|
||
|
|
final bool urgent;
|
||
|
|
TaskModel({
|
||
|
|
required this.taskId,
|
||
|
|
required this.userId,
|
||
|
|
required this.title,
|
||
|
|
required this.description,
|
||
|
|
required this.time,
|
||
|
|
required this.date,
|
||
|
|
required this.completed,
|
||
|
|
required this.urgent,
|
||
|
|
});
|
||
|
|
}
|