Skip to content

Commit 324f36a

Browse files
committed
Calander Schedule- After fixing the merge conflict
1 parent 4134b10 commit 324f36a

File tree

2 files changed

+1
-8
lines changed
  • src
    • ResourceManager/Automation/Commands.Automation/Model
    • ServiceManagement/Automation/Commands.Automation/Model

2 files changed

+1
-8
lines changed

src/ResourceManager/Automation/Commands.Automation/Model/Schedule.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ public Schedule()
112112
public ScheduleFrequency Frequency { get; set; }
113113

114114
/// <summary>
115-
<<<<<<< HEAD
116115
/// Gets or sets the schedule days of the week.
117116
/// </summary>
118117
public IList<string> DaysOfWeekWeeklySchedule { get; set; }
@@ -259,7 +258,7 @@ private IList<DaysOfMonth> GetDaysOfMonth(IList<int> daysOfMonth)
259258
{
260259
return daysOfMonth.Select(value => (DaysOfMonth)value).ToList();
261260
}
262-
=======
261+
/// <summary>
263262
/// Gets or sets the schedule time zone.
264263
/// </summary>
265264
public string TimeZone { get; set; }

src/ServiceManagement/Automation/Commands.Automation/Model/Schedule.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public Schedule(string automationAccountName, WindowsAzure.Management.Automation
4545
: this.NextRun;
4646
this.Interval = schedule.Properties.Interval.HasValue ? schedule.Properties.Interval.Value : this.Interval;
4747
this.Frequency = (ScheduleFrequency)Enum.Parse(typeof(ScheduleFrequency), schedule.Properties.Frequency, true);
48-
this.TimeZone = schedule.Properties.TimeZone;
4948
}
5049

5150
/// <summary>
@@ -109,10 +108,5 @@ public Schedule()
109108
/// Gets or sets the schedule frequency.
110109
/// </summary>
111110
public ScheduleFrequency Frequency { get; set; }
112-
113-
/// <summary>
114-
/// Gets or sets the schedule time zone.
115-
/// </summary>
116-
public string TimeZone { get; set; }
117111
}
118112
}

0 commit comments

Comments
 (0)