Files
Essentials/src/PepperDash.Essentials.MobileControl/UserCodeChangedContent.cs
Andrew Welker 9c9eaea928 feat: unique status requests for messengers
UI Applications can now request status for specific feature sets instead of full status for a device. This will hopefully cut down on the traffic and messages required to get the data for the UI.
2025-09-23 10:55:16 -05:00

25 lines
578 B
C#

using Newtonsoft.Json;
namespace PepperDash.Essentials
{
/// <summary>
/// Represents a UserCodeChangedContent
/// </summary>
public class UserCodeChangedContent
{
/// <summary>
/// Gets or sets the UserCode
/// </summary>
[JsonProperty("userCode")]
public string UserCode { get; set; }
/// <summary>
/// Gets or sets the QrChecksum
/// </summary>
[JsonProperty("qrChecksum", NullValueHandling = NullValueHandling.Include)]
public string QrChecksum { get; set; }
}
}