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

11 lines
297 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; }
public long MaxAgeSeconds { get; set; }
public bool IncludeSubdomains { get; set; }
public bool Preload { get; set; }
}