20 lines
661 B
C#
20 lines
661 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;
|
|
// ReSharper disable once InconsistentNaming
|
|
public const int Details_Admin = 1111;
|
|
public const int Details_Results = 1183;
|
|
public const int PasswordResetRequest = 1164;
|
|
public const int LeafInputCreate = 1099;
|
|
}
|
|
|
|
public static class LeafWebMemberProperties
|
|
{
|
|
public const string VerificationToken = "VerificationToken";
|
|
public const string PasswordResetToken = "PasswordResetToken";
|
|
}
|
|
} |