LookingGlass/Models/MyhmConfiguration.cs
2025-01-29 18:09:21 +00:00

17 lines
494 B
C#

namespace Myhm.Models
{
public class MyhmConfiguration
{
public required string GlobalToken { get; init; }
public required string DatabaseConnectionString { get; init; }
public required DatabaseTypes DatabaseType { get; init; }
public bool UseSentry { get; init; } = true;
public bool UseSwagger { get; init; } = true;
public bool LogRequests { get; init; } = true;
}
public enum DatabaseTypes
{
PostgresSQL,
}
}