using System.ComponentModel; namespace Enums { /// /// 文件存储位置 /// public enum StoreType { /// /// 本地 /// [Description("本地")] LOCAL = 1, /// /// 阿里云 /// [Description("阿里云")] ALIYUN = 2, /// /// 腾讯云 /// [Description("腾讯云")] TENCENT = 3, /// /// 七牛 /// [Description("七牛云")] QINIU = 4, /// /// 远程 /// [Description("远程")] REMOTE = 5 } }