mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
fix: use correct property names
This commit is contained in:
parent
97448f4f0f
commit
47017da527
1 changed files with 2 additions and 2 deletions
|
|
@ -64,14 +64,14 @@ namespace PepperDash.Essentials.AppServer.Messengers
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the CurrentSourceKey
|
/// Gets or sets the CurrentSourceKey
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("currentSourceKey", NullValueHandling = NullValueHandling.Ignore)]
|
[JsonProperty("currentSourceKeys", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public Dictionary<eRoutingSignalType, string> CurrentSourceKeys { get; set; }
|
public Dictionary<eRoutingSignalType, string> CurrentSourceKeys { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the CurrentSource
|
/// Gets or sets the CurrentSource
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("currentSource")]
|
[JsonProperty("currentSources")]
|
||||||
public Dictionary<eRoutingSignalType, SourceListItem> CurrentSources { get; set; }
|
public Dictionary<eRoutingSignalType, SourceListItem> CurrentSources { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue