mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
Also removed references to the custom HTTP client implimentation and we now use the inbuilt IHttpClientFactory, this means we have removed the "Ignore Certificate Errors" option in Ombi as it's no longer needed.
20 lines
No EOL
759 B
C#
20 lines
No EOL
759 B
C#
namespace Ombi.Settings.Settings.Models
|
|
{
|
|
public class OmbiSettings : Models.Settings
|
|
{
|
|
public string BaseUrl { get; set; }
|
|
public bool CollectAnalyticData { get; set; }
|
|
public bool Wizard { get; set; }
|
|
public string ApiKey { get; set; }
|
|
public bool DoNotSendNotificationsForAutoApprove { get; set; }
|
|
public bool HideRequestsUsers { get; set; }
|
|
public bool DisableHealthChecks { get; set; }
|
|
public string DefaultLanguageCode { get; set; } = "en";
|
|
public bool AutoDeleteAvailableRequests { get; set; }
|
|
public int AutoDeleteAfterDays { get; set; }
|
|
|
|
//INTERNAL
|
|
public bool HasMigratedOldTvDbData { get; set; }
|
|
public bool Set { get; set; }
|
|
}
|
|
} |