elias e5e1dff331 Added Structure to Code.
Added automatic request of the UpdateURL.
2023-01-31 20:10:12 +01:00

9 lines
249 B
C#

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; }
}