mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-05 07:45:05 +00:00
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.
25 lines
578 B
C#
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; }
|
|
}
|
|
}
|