1234567891011121314151617181920212223 |
- namespace GxPress.Common.AppOptions
- {
- /// <summary>
- /// 存储配置
- /// </summary>
- public class StorageOptions
- {
- public StorageOptions()
- {
- }
- public string StorageType { get; set; }
- public string Endpoint { get; set; }
- public string AccessKey { get; set; }
- public string SecretKey { get; set; }
- public bool SSL {get;set;}
- }
- }
|