SharpRSS/SharpRSS.Data/Domains/Configuration/HstsConfiguration.cs

11 lines
299 B
C#
Raw Normal View History

2024-07-06 00:02:02 +02:00
namespace SharpRSS.Data.Domains.Configuration;
public class HstsConfiguration
{
public const string Hsts = "HSTS";
public bool EnableHsts { get; set; }
2024-07-13 16:29:27 +02:00
public double MaxAgeSeconds { get; set; }
2024-07-06 00:02:02 +02:00
public bool IncludeSubdomains { get; set; }
public bool Preload { get; set; }
}