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

12 lines
253 B
C#

using Newtonsoft.Json;
namespace DDNSUpdater.Models.Requests;
public class DynamicDns
{
[JsonProperty("domains")]
public List<string> Domains { get; set; }
[JsonProperty("description")]
public string Description { get; set; }
}