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