mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
fix: use correct property names
This commit is contained in:
@@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user