Files
LeafWeb/WebCms/Controllers/LeafWebPageIds.cs
T
2020-01-26 09:05:54 -05:00

17 lines
498 B
C#

namespace LeafWeb.WebCms.Controllers
{
// Umbraco page IDs for LeafWeb application pages
public static class LeafWebPageIds
{
public const int ManageQueue = 1107;
public const int Chart = 1100;
public const int Details = 1111;
public const int PasswordResetRequest = 1164;
}
public static class LeafWebMemberProperties
{
public const string VerificationToken = "VerificationToken";
public const string PasswordResetToken = "PasswordResetToken";
}
}