using OnceMi.AspNetCore.OSS; namespace Admin.NET.Core; /// /// 对象存储配置选项 /// public sealed class OSSProviderOptions : OSSOptions, IConfigurableOptions { /// /// 是否启用OSS存储 /// public bool IsEnable { get; set; } /// /// 自定义桶名称 不能直接使用Provider来替代桶名称 /// 例:阿里云 1.只能包括小写字母,数字,短横线(-)2.必须以小写字母或者数字开头 3.长度必须在3-63字节之间 /// public string Bucket { get; set; } }