Skip to content

Commit

Permalink
fixing incorrect property aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
tculotta committed Apr 2, 2024
1 parent 2a4391c commit e271de4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AgentInterfaces/MaintenanceSchedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class MaintenanceSchedule
{
public string DocumentIncarnation { get; set; }

[JsonProperty("Events")]
[JsonProperty("events")]
public IList<MaintenanceEvent> MaintenanceEvents { get; set; }

public MaintenanceSchedule() { }
Expand All @@ -40,7 +40,7 @@ public class MaintenanceEvent

public string ResourceType { get; set; }

[JsonProperty("Resources")]
[JsonProperty("resources")]
public IList<string> AffectedResources { get; set; }

public string EventStatus { get; set; }
Expand Down

0 comments on commit e271de4

Please sign in to comment.