1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00
bitwarden/util/seeder/Settings/GlobalSettings.cs
2025-03-13 16:51:40 -06:00

17 lines
550 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;
}
}