10 lines
344 B
C#
10 lines
344 B
C#
namespace VirtualDDNSRouter.Client.Models;
|
|
|
|
public class Settings
|
|
{
|
|
public string Host { get; set; } = string.Empty;
|
|
public string Path { get; set; } = string.Empty;
|
|
public ushort DestinationPort { get; set; } = 80;
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public ushort RefreshIntervalMinutes { get; set; } = 5;
|
|
} |