Elias Stepanik b44040ae8d d
2023-09-27 23:36:08 +02: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; }
}