ApiConfig.cs 725 B

1234567891011121314151617181920212223242526272829303132333435
  1. using cuidian.Common;
  2. namespace cuidian.OpenApi
  3. {
  4. public static class ApiConfig
  5. {
  6. public static string AppKey
  7. {
  8. get { return OpenApiSection.Instance.AppKey; }
  9. }
  10. public static string FromAccount
  11. {
  12. get { return OpenApiSection.Instance.FromAccount; }
  13. }
  14. public static string ToAccount
  15. {
  16. get { return OpenApiSection.Instance.ToAccount; }
  17. }
  18. public static string AppSecret
  19. {
  20. get { return OpenApiSection.Instance.AppSecret; }
  21. }
  22. public static string BaseUrl
  23. {
  24. get { return OpenApiSection.Instance.BaseUrl; }
  25. }
  26. }
  27. }