ConstValue.cs 187 B

12345678
  1. namespace ET
  2. {
  3. public static class ConstValue
  4. {
  5. public const string RouterHttpAddress = "127.0.0.1:10300";
  6. public const int SessionTimeoutTime = 30 * 1000;
  7. }
  8. }