Files
mixtape/zero.Core/Preview/PreviewOptions.cs
T

17 lines
326 B
C#
Raw Normal View History

2022-03-04 00:45:07 +01:00
namespace zero.Routing;
public class PreviewOptions
{
public PreviewOptions()
{
2022-03-07 17:13:10 +01:00
Path = "/preview";
QueryParameter = "zero_preview";
TokenExpirationInMinutes = 10;
2022-03-04 00:45:07 +01:00
}
2022-03-07 17:13:10 +01:00
public string Path { get; set; }
public string QueryParameter { get; set; }
public double TokenExpirationInMinutes { get; set; }
2022-03-04 00:45:07 +01:00
}