Remotely/Server/Options/ApplicationOptions.cs
2024-02-22 11:25:58 -08:00

9 lines
238 B
C#

namespace Remotely.Server.Options;
public class ApplicationOptions
{
public const string SectionKey = "ApplicationOptions";
public string DbProvider { get; set; } = "SQLite";
public string? DockerGatewayIp { get; set; }
}