chore: move all files to file-scoped namespace

This commit is contained in:
Andrew Welker 2025-07-04 16:02:32 -05:00 committed by Neil Dorin
parent aaa5b0532b
commit 3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions

View file

@ -8,16 +8,16 @@ namespace PepperDash.Essentials.AppServer
/// </summary>
public class SourceSelectMessageContent
{
[JsonProperty("sourceListItemKey")]
/// <summary>
/// Gets or sets the SourceListItemKey
/// </summary>
[JsonProperty("sourceListItemKey")]
public string SourceListItemKey { get; set; }
[JsonProperty("sourceListKey")]
/// <summary>
/// Gets or sets the SourceListKey
/// </summary>
[JsonProperty("sourceListKey")]
public string SourceListKey { get; set; }
}
@ -27,20 +27,20 @@ namespace PepperDash.Essentials.AppServer
public class DirectRoute
{
[JsonProperty("sourceKey")]
/// <summary>
/// Gets or sets the SourceKey
/// </summary>
[JsonProperty("sourceKey")]
public string SourceKey { get; set; }
[JsonProperty("destinationKey")]
/// <summary>
/// Gets or sets the DestinationKey
/// </summary>
[JsonProperty("destinationKey")]
public string DestinationKey { get; set; }
[JsonProperty("signalType")]
/// <summary>
/// Gets or sets the SignalType
/// </summary>
[JsonProperty("signalType")]
public eRoutingSignalType SignalType { get; set; }
}
@ -52,4 +52,4 @@ namespace PepperDash.Essentials.AppServer
/// Delegate for PressAndHoldAction
/// </summary>
public delegate void PressAndHoldAction(bool b);
}
}