namespace AMWD.Net.Api.Cloudflare
{
///
/// A simple zone object. May have null properties if not a zone subscription.
/// Source
///
public class SubscriptionZone
{
///
/// Identifier.
///
[JsonProperty("id")]
public string? Id { get; set; }
///
/// The domain name.
///
[JsonProperty("name")]
public string? Name { get; set; }
}
}