28 lines
907 B
C#
28 lines
907 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Weee
|
|||
|
{
|
|||
|
|
|||
|
//本class主要目的是將會多次出現在程式中的字串集中管理 , 只出現一次的字串或不應移到此 : ex: route attribute
|
|||
|
internal sealed class ProgramConstants
|
|||
|
{
|
|||
|
public const string admin = "admin";
|
|||
|
|
|||
|
public const string certification = "certification";
|
|||
|
|
|||
|
public const string normalcompany = "normal";
|
|||
|
|
|||
|
public const string active = "active";
|
|||
|
|
|||
|
public const string RequestLink = "http://weee-dev.azurewebsites.net/LCARequest/Accept/";
|
|||
|
|
|||
|
public const string AnonymousReplyLink = "http://weee-dev.azurewebsites.net/?uid=";
|
|||
|
|
|||
|
//測試時使用 , 正式上線時除了第一次啟動app預設 admin password之外 不應使用
|
|||
|
public const string DefaultPassword = "123456";//hack 預設使用者密碼
|
|||
|
|
|||
|
}
|
|||
|
}
|