2016-06-17 23:42:22 +02:00
|
|
|
|
using StackExchange.Redis.Extensions.Core.Configuration;
|
|
|
|
|
using System;
|
2015-12-09 04:57:38 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core
|
|
|
|
|
{
|
|
|
|
|
public class GlobalSettings
|
|
|
|
|
{
|
2016-02-06 07:18:25 +01:00
|
|
|
|
public virtual string SiteName { get; set; }
|
|
|
|
|
public virtual string BaseVaultUri { get; set; }
|
2016-05-20 01:10:24 +02:00
|
|
|
|
public virtual string JwtSigningKey { get; set; }
|
2016-02-06 07:18:25 +01:00
|
|
|
|
public virtual SqlServerSettings SqlServer { get; set; } = new SqlServerSettings();
|
2015-12-09 04:57:38 +01:00
|
|
|
|
public virtual MailSettings Mail { get; set; } = new MailSettings();
|
2016-02-07 05:45:33 +01:00
|
|
|
|
public virtual LoggrSettings Loggr { get; set; } = new LoggrSettings();
|
2016-06-17 23:42:22 +02:00
|
|
|
|
public virtual CacheSettings Cache { get; set; } = new CacheSettings();
|
2015-12-09 04:57:38 +01:00
|
|
|
|
|
2016-02-06 07:18:25 +01:00
|
|
|
|
public class SqlServerSettings
|
|
|
|
|
{
|
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-09 04:57:38 +01:00
|
|
|
|
public class MailSettings
|
|
|
|
|
{
|
2016-02-07 05:45:33 +01:00
|
|
|
|
public string ApiKey { get; set; }
|
2015-12-09 04:57:38 +01:00
|
|
|
|
public string ReplyToEmail { get; set; }
|
|
|
|
|
}
|
2016-02-07 05:45:33 +01:00
|
|
|
|
|
|
|
|
|
public class LoggrSettings
|
|
|
|
|
{
|
|
|
|
|
public string LogKey { get; set; }
|
|
|
|
|
public string ApiKey { get; set; }
|
|
|
|
|
}
|
2016-06-17 23:42:22 +02:00
|
|
|
|
|
|
|
|
|
public class CacheSettings
|
|
|
|
|
{
|
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
public int Database { get; set; }
|
|
|
|
|
}
|
2015-12-09 04:57:38 +01:00
|
|
|
|
}
|
|
|
|
|
}
|