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