27 lines
774 B
C#
27 lines
774 B
C#
namespace Flawless.Server;
|
|
|
|
public static class SettingKey
|
|
{
|
|
public const string ServerName = nameof(ServerName);
|
|
|
|
public const string AllowPublicRegistration = nameof(AllowPublicRegistration);
|
|
|
|
public const string UseWebHook = nameof(UseWebHook);
|
|
|
|
public const string WebhookTimeout = nameof(WebhookTimeout);
|
|
|
|
public const string WebhookMaxRetries = nameof(WebhookMaxRetries);
|
|
|
|
public const string UseSmtp = nameof(UseSmtp);
|
|
|
|
public const string SmtpHost = nameof(SmtpHost);
|
|
|
|
public const string SmtpPort = nameof(SmtpPort);
|
|
|
|
public const string SmtpUseSsl = nameof(SmtpUseSsl);
|
|
|
|
public const string SmtpUsername = nameof(SmtpUsername);
|
|
|
|
public const string SmtpPassword = nameof(SmtpPassword);
|
|
|
|
} |