You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models/CommonModels/PolicyRetentionObjects.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -345,7 +345,7 @@ public class WeeklyRetentionFormat
345
345
{
346
346
publicList<DayOfWeek>DaysOfTheWeek{get;set;}
347
347
348
-
publicList<WeekNumber>WeeksOfTheMonth{get;set;}
348
+
publicList<WeekOfMonth>WeeksOfTheMonth{get;set;}
349
349
350
350
publicvoidValidate()
351
351
{
@@ -360,9 +360,9 @@ public void Validate()
360
360
}
361
361
362
362
// validate if WeeksOfTheMonth are valid
363
-
foreach(WeekNumberweekinWeeksOfTheMonth)
363
+
foreach(WeekOfMonthweekinWeeksOfTheMonth)
364
364
{
365
-
if(week==WeekNumber.Invalid)
365
+
if(week==WeekOfMonth.Invalid)
366
366
{
367
367
thrownewArgumentException("WeeksOfTheMonth content is Invalid");
0 commit comments