mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
11 lines
299 B
C#
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; }
|
|
} |