namespace AMWD.Net.Api.Cloudflare.Dns { /// /// Represents a request to import DNS records. /// public class ImportDnsRecordsRequest { /// /// Initializes a new instance of the class. /// /// The zone identifier. public ImportDnsRecordsRequest(string zoneId) { ZoneId = zoneId; } /// /// The zone identifier. /// public string ZoneId { get; set; } /// /// BIND config to import. /// public string? File { get; set; } /// /// Whether or not proxiable records should receive the performance and /// security benefits of Cloudflare. /// public bool? Proxied { get; set; } } }