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