StorageOptions.cs 419 B

1234567891011121314151617181920212223
  1. namespace GxPress.Common.AppOptions
  2. {
  3. /// <summary>
  4. /// 存储配置
  5. /// </summary>
  6. public class StorageOptions
  7. {
  8. public StorageOptions()
  9. {
  10. }
  11. public string StorageType { get; set; }
  12. public string Endpoint { get; set; }
  13. public string AccessKey { get; set; }
  14. public string SecretKey { get; set; }
  15. public bool SSL {get;set;}
  16. }
  17. }