changes
This commit is contained in:
@@ -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,
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user