File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
src/ScheduledTasks/Models Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ namespace Microsoft.DurableTask.ScheduledTasks;
88/// </summary>
99public class ScheduleConfigurationCreateOptions
1010{
11+ string orchestrationName ;
12+ TimeSpan ? interval ;
13+
1114 /// <summary>
1215 /// Initializes a new instance of the <see cref="ScheduleConfigurationCreateOptions"/> class.
1316 /// </summary>
@@ -84,8 +87,4 @@ public TimeSpan? Interval
8487 /// Gets or sets whether to start immediately if the schedule is already late.
8588 /// </summary>
8689 public bool ? StartImmediatelyIfLate { get ; set ; }
87-
88- string orchestrationName ;
89-
90- TimeSpan ? interval ;
9190}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ namespace Microsoft.DurableTask.ScheduledTasks;
99public class ScheduleConfigurationUpdateOptions
1010{
1111 string ? orchestrationName ;
12+ TimeSpan ? interval ;
1213
1314 /// <summary>
1415 /// Gets or sets the name of the orchestration to schedule.
@@ -42,8 +43,6 @@ public string? OrchestrationName
4243 /// </summary>
4344 public DateTimeOffset ? EndAt { get ; set ; }
4445
45- TimeSpan ? interval ;
46-
4746 /// <summary>
4847 /// Gets or sets the time interval between schedule executions. Must be at least 1 second.
4948 /// </summary>
You can’t perform that action at this time.
0 commit comments