mirror of
https://github.com/eliasstepanik/IonosDDNSUpdater.git
synced 2026-01-11 19:48:26 +00:00
21 lines
359 B
C#
21 lines
359 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DDNSUpdater.Models;
|
|
|
|
public class Domain
|
|
{
|
|
public Domain(string domain, string key)
|
|
{
|
|
DomainString = domain;
|
|
Key = key;
|
|
}
|
|
|
|
public string DomainString { get; set; }
|
|
public string Key { get; set; }
|
|
}
|
|
|
|
|
|
public class DomainGroup
|
|
{
|
|
public List<Domain> Domains { get; set; }
|
|
} |