123456789101112131415161718192021222324252627282930313233343536373839 |
-
- using System.Drawing;
- namespace lqnet.Api
- {
- public class MyConstants
- {
- public static string METHOD_POST = "POST";
- public static string METHOD_GET = "GET";
- public static string JSON_UTF8 = "application/json;charset=UTF-8";
- public static string CONTENT_TYPE = "Content-Type";
- public static int CODE_SUCCESS_200 = 200;
- public static int CODE_FAIL_500 = 500;
- public static int CODE_EXP_MINUS_2 = -2;
- public static string MIND_PWD_PATH = "\\Windows\\cfg_00001.dat1";
- public static string MIND_PWD_PATH_PREF = "eKm2Q1";
- public static string USER_AUTH_HEADER = "Authorization";
- public static string NON_NULL_CHECK_CODE = "-%#-@";
- public static string BACKGROUDIMG_NAME = "\\backgroundImg.jpg";
- public static Color BACKGROUDIMG_COLOR = Color.SkyBlue;
- }
- public class VariablesGlobal
- {
- public static string IP_PORT = "http://47.108.207.174:8190/";
- public static string USER_TOKEN = "";
- }
- }
|