This commit is contained in:
José Salazar
2026-02-01 22:39:40 +09:00
parent 3cebb37dfd
commit 6277b9f5e2
19 changed files with 20900 additions and 18729 deletions

View File

@@ -26,6 +26,9 @@ class Shift extends Equatable {
final int? durationDays; // For multi-day shifts
final int? requiredSlots;
final int? filledSlots;
final String? roleId;
final bool? hasApplied;
final double? totalValue;
const Shift({
required this.id,
@@ -53,6 +56,9 @@ class Shift extends Equatable {
this.durationDays,
this.requiredSlots,
this.filledSlots,
this.roleId,
this.hasApplied,
this.totalValue,
});
@override
@@ -82,6 +88,9 @@ class Shift extends Equatable {
durationDays,
requiredSlots,
filledSlots,
roleId,
hasApplied,
totalValue,
];
}