You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
701 B

namespace Gos.Core
{
public static class ConfigurationKey
{
private const string Prefix = "GOS";
public static string SoundFilesFolder => $"{Prefix}:{nameof(SoundFilesFolder)}";
public static class Database
{
public static string ConnectionString => $"{Prefix}:{nameof(Database)}:{nameof(ConnectionString)}";
}
public static class Elastic
{
public static string ConnectionString => $"{Prefix}:{nameof(Elastic)}:{nameof(ConnectionString)}";
}
public static class Logging
{
public static string LogPath => $"{Prefix}:{nameof(Logging)}:{nameof(LogPath)}";
}
}
}