49 lines
1.9 KiB
C#
49 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KDCS.Utils
|
|
{
|
|
|
|
public class Define
|
|
{
|
|
|
|
public const string STRING_CUR_VERSION = "03";
|
|
public const string STRING_PRODUCT_BRAND = "KMBIM";
|
|
public const string STRING_PRODUCT = "KMBIM";
|
|
public const string STRING_DB_EXT = ".DAT";
|
|
public const string STRING_DB_EXT_NAME = "DAT";
|
|
|
|
//public const string STRING_AUTHO_URL = "http://license.dcs.co.kr/main.php/RequestBase";
|
|
|
|
public const int UINT_ADV_SHOW_TIMER = 1000 * 60 * 5;// [ iknow 2012-5-30 ] 기본값 5분.
|
|
// 파라미터 태그..
|
|
public const string STRING_PRODUCTNAME_TAG = "strProduct"; // ProductName 해당.
|
|
public const string STRING_CURVER_TAG = "strVersion"; // 사용자 프로그램 버전
|
|
public const string STRING_PLATFORM_TAG = "strPlatform"; // 사용자가 사용하는 플랫폼
|
|
public const string STRING_GROUP_ID_TAG = "strGroupID";
|
|
public const string STRING_ID_TAG = "strID";
|
|
public const string STRING_PASS_TAG = "strPass";
|
|
public const string STRING_FUNCTION_TAG = "function";
|
|
|
|
public const string STRING_USERNAME_TAG = "strUserName";
|
|
public const string STRING_DEPART_TAG = "strDepartment";
|
|
|
|
public const string STRING_TEL_TAG = "strTel";
|
|
public const string STRING_MAIL_TAG = "strMail";
|
|
|
|
public const string STRING_RESULT_TAG = "result";
|
|
public const string STRING_MSG_TAG = "msg";
|
|
public const string STRING_LOCKINFO_TAG = "SlInfo";
|
|
|
|
public const string STRING_TYPE_TAG = "strType";
|
|
public const string STRING_MAC_TAG = "strMac";
|
|
public const string STRING_NEW_PW_TAG = "strNewPass";
|
|
public const string STRING_PWCHANGE_TAG = "ChangePWInternetLock";
|
|
public const string STRING_HP_TAG = "strHp";
|
|
|
|
}
|
|
}
|