mirror of
https://github.com/eliasstepanik/IonosDDNSUpdater.git
synced 2026-01-11 03:28:27 +00:00
9 lines
249 B
C#
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; }
|
|
} |