using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.OAuth; /// /// Represents user details /// public class UserInfo : ApiResponse { /// /// Gets or sets the unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "uuid")] public string Uuid { get; set; } /// /// Gets or sets the organization unique identifier as UUID version 1 /// [JsonProperty(PropertyName = "organizationUuid")] public string OrganizationUuid { get; set; } }