mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 13:55:40 -06:00
18 lines
654 B
C#
18 lines
654 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class ServerSettingsViewModel
|
|
{
|
|
public string LocaleInfo { get; set; }
|
|
public string PostgresConnection { get; set; }
|
|
public string AllowedFileExtensions { get; set; }
|
|
public string CustomLogoURL { get; set; }
|
|
public string MessageOfTheDay { get; set; }
|
|
public string WebHookURL { get; set; }
|
|
public bool CustomWidgetsEnabled { get; set; }
|
|
public bool InvariantAPIEnabled { get; set; }
|
|
public MailConfig SMTPConfig { get; set; } = new MailConfig();
|
|
public OpenIDConfig OIDCConfig { get; set; } = new OpenIDConfig();
|
|
|
|
}
|
|
}
|