namespace AMWD.Net.Api.Cloudflare { /// /// Base implementation of an owner. /// public class OwnerBase { /// /// Identifier. /// // <= 32 characters [JsonProperty("id")] public string Id { get; set; } /// /// Name of the owner. /// [JsonProperty("name")] public string Name { get; set; } /// /// The type of owner. /// [JsonProperty("type")] public string Type { get; set; } } }