mirror of
https://github.com/eliasstepanik/AutoProxy.git
synced 2026-01-10 05:08:33 +00:00
13 lines
287 B
C#
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; }
|
|
} |