using Microsoft.AspNetCore.Http; namespace AMWD.Common.AspNetCore.Security.PathProtection { /// /// Options to define which folder should be protected. /// public class ProtectedPathOptions { /// /// Gets or sets the path to the protected folder. /// public PathString Path { get; set; } /// /// Gets or sets the policy name to use. /// public string PolicyName { get; set; } } }