namespace AMWD.Net.Api.Cloudflare.Dns
{
///
/// Represents a request to add a custom nameserver.
///
public class AddCustomNameserverRequest
{
///
/// Initializes a new instance of the class.
///
/// The account identifier.
/// The FQDN of the name server.
public AddCustomNameserverRequest(string accountId, string nameserverName)
{
AccountId = accountId;
NameserverName = nameserverName;
}
///
/// The account identifier.
///
public string AccountId { get; set; }
///
/// The FQDN of the name server.
///
public string NameserverName { get; set; }
///
/// The number of the set that this name server belongs to.
///
public int? NameserverSet { get; set; }
}
}