namespace GxPress.Common.AppOptions { /// /// 存储配置 /// 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;} } }