Schedules

This commit is contained in:
Hillel Coren 2023-02-14 17:20:20 +02:00
parent 3bc2affbf7
commit 73f9fc4723
1 changed files with 7 additions and 2 deletions

View File

@ -65,6 +65,7 @@ abstract class ScheduleEntity extends Object
name: '', name: '',
nextRun: '', nextRun: '',
template: '', template: '',
parameters: ScheduleParameters(),
); );
} }
@ -175,8 +176,12 @@ abstract class ScheduleParameters
implements Built<ScheduleParameters, ScheduleParametersBuilder> { implements Built<ScheduleParameters, ScheduleParametersBuilder> {
factory ScheduleParameters({String id, bool isEnabled}) { factory ScheduleParameters({String id, bool isEnabled}) {
return _$ScheduleParameters._( return _$ScheduleParameters._(
//maxLimit: -1, clients: BuiltList<String>(),
); dateRange: '',
showAgingTable: false,
showPaymentsTable: false,
status: '',
);
} }
ScheduleParameters._(); ScheduleParameters._();