Files
mixtape/zero.Core/Preview/PreviewOptions.cs
T
2022-03-07 17:13:10 +01:00

17 lines
326 B
C#

namespace zero.Routing;
public class PreviewOptions
{
public PreviewOptions()
{
Path = "/preview";
QueryParameter = "zero_preview";
TokenExpirationInMinutes = 10;
}
public string Path { get; set; }
public string QueryParameter { get; set; }
public double TokenExpirationInMinutes { get; set; }
}