Skip to content

Commit e13b25d

Browse files
committed
style
1 parent 7bffc26 commit e13b25d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/ScheduledTasks/Models/ScheduleConfigurationCreateOptions.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ namespace Microsoft.DurableTask.ScheduledTasks;
88
/// </summary>
99
public 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
}

src/ScheduledTasks/Models/ScheduleConfigurationUpdateOptions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace Microsoft.DurableTask.ScheduledTasks;
99
public 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>

0 commit comments

Comments
 (0)