17 lines
498 B
C#
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";
|
|
}
|
|
} |