Base.cs 324 B

1234567891011121314151617
  1. using Base;
  2. namespace AppConfig
  3. {
  4. public class Base
  5. {
  6. public static string Host
  7. {
  8. get
  9. {
  10. string Host = "http://telap.yunmic.com";
  11. // AppSettings.Bind("Host", Host);
  12. return Host;
  13. }
  14. }
  15. }
  16. }