1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-25 13:24:50 -05:00
bitwarden/util/seeder/Settings/GlobalSettings.cs

16 lines
547 B
C#

namespace Bit.Seeder.Settings;
public class GlobalSettings
{
public bool SelfHosted { get; set; }
public string DatabaseProvider { get; set; } = string.Empty;
public SqlSettings SqlServer { get; set; } = new SqlSettings();
public SqlSettings PostgreSql { get; set; } = new SqlSettings();
public SqlSettings MySql { get; set; } = new SqlSettings();
public SqlSettings Sqlite { get; set; } = new SqlSettings();
public class SqlSettings
{
public string ConnectionString { get; set; } = string.Empty;
}
}