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

13 lines
287 B
C#

using System.Collections.Generic;
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; }
}