Added DNS Records for Zone actions
This commit is contained in:
20
Extensions/Cloudflare.Zones/Models/ImportDnsRecordsResult.cs
Normal file
20
Extensions/Cloudflare.Zones/Models/ImportDnsRecordsResult.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones
|
||||
{
|
||||
/// <summary>
|
||||
/// The DNS records import result.
|
||||
/// </summary>
|
||||
public class ImportDnsRecordsResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Number of DNS records added.
|
||||
/// </summary>
|
||||
[JsonProperty("recs_added")]
|
||||
public int? RecordsAdded { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Total number of DNS records parsed.
|
||||
/// </summary>
|
||||
[JsonProperty("total_records_parsed")]
|
||||
public int? TotalRecordsParsed { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user