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