SharpRSS/SharpRSS.Data/Domains/Configuration/HstsConfiguration.cs
2024-07-13 16:29:27 +02:00

11 lines
299 B
C#

namespace SharpRSS.Data.Domains.Configuration;
public class HstsConfiguration
{
public const string Hsts = "HSTS";
public bool EnableHsts { get; set; }
public double MaxAgeSeconds { get; set; }
public bool IncludeSubdomains { get; set; }
public bool Preload { get; set; }
}