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