mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 16:55:04 +00:00
23 lines
576 B
C#
23 lines
576 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
/// Represents a UserCodeChangedContent
|
|
/// </summary>
|
|
public class UserCodeChangedContent
|
|
{
|
|
[JsonProperty("userCode")]
|
|
/// <summary>
|
|
/// Gets or sets the UserCode
|
|
/// </summary>
|
|
public string UserCode { get; set; }
|
|
|
|
[JsonProperty("qrChecksum", NullValueHandling = NullValueHandling.Include)]
|
|
/// <summary>
|
|
/// Gets or sets the QrChecksum
|
|
/// </summary>
|
|
public string QrChecksum { get; set; }
|
|
}
|
|
}
|