mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 07:56:50 +00:00
24 lines
513 B
C#
24 lines
513 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; }
|
|
}
|
|
|