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

@ -9,22 +9,22 @@ namespace PepperDash.Essentials.AppServer.Messengers
/// </summary>
public class MobileControlMessage : IMobileControlMessage
{
[JsonProperty("type")]
/// <summary>
/// Gets or sets the Type
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("clientId")]
/// <summary>
/// Gets or sets the ClientId
/// </summary>
[JsonProperty("clientId")]
public string ClientId { get; set; }
[JsonProperty("content")]
/// <summary>
/// Gets or sets the Content
/// </summary>
[JsonProperty("content")]
public JToken Content { get; set; }
}
}
}