You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
555 B
C#
34 lines
555 B
C#
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 文件存储位置
|
|
/// </summary>
|
|
public enum FileLocation
|
|
{
|
|
/// <summary>
|
|
/// 阿里云
|
|
/// </summary>
|
|
[Description("阿里云")]
|
|
ALIYUN = 1,
|
|
|
|
/// <summary>
|
|
/// 腾讯云
|
|
/// </summary>
|
|
[Description("腾讯云")]
|
|
TENCENT = 2,
|
|
|
|
/// <summary>
|
|
/// minio服务器
|
|
/// </summary>
|
|
[Description("minio服务器")]
|
|
MINIO = 3,
|
|
|
|
/// <summary>
|
|
/// 本地
|
|
/// </summary>
|
|
[Description("本地")]
|
|
LOCAL = 4
|
|
}
|