2023-03-20 19:53:47 +01:00

11 lines
284 B
C#

using System.Collections.Generic;
namespace DDNSUpdater.Models.Requests;
public class DynamicDnsResponse
{
public string BulkId { get; set; }
public string UpdateUrl { get; set; }
public List<string> Domains { get; set; }
public string Description { get; set; }
}