1234567891011121314151617181920212223242526272829303132333435 |
- using cuidian.Common;
- namespace cuidian.OpenApi
- {
- public static class ApiConfig
- {
-
- public static string AppKey
- {
- get { return OpenApiSection.Instance.AppKey; }
- }
- public static string FromAccount
- {
- get { return OpenApiSection.Instance.FromAccount; }
- }
- public static string ToAccount
- {
- get { return OpenApiSection.Instance.ToAccount; }
- }
- public static string AppSecret
- {
- get { return OpenApiSection.Instance.AppSecret; }
- }
- public static string BaseUrl
- {
- get { return OpenApiSection.Instance.BaseUrl; }
- }
-
- }
- }
|