19 lines
405 B
Dart
19 lines
405 B
Dart
/// Represents a recent operations task for the dashboard view.
|
|
class RecentOperation {
|
|
final String id;
|
|
final String title;
|
|
final String status;
|
|
final String? description;
|
|
final String? priority;
|
|
final DateTime? createdAt;
|
|
|
|
const RecentOperation({
|
|
required this.id,
|
|
required this.title,
|
|
required this.status,
|
|
this.description,
|
|
this.priority,
|
|
this.createdAt,
|
|
});
|
|
}
|