feat: finalize core modules and gateway
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace TakeoutSaaS.Module.Storage;
|
||||
|
||||
/// <summary>
|
||||
/// 存储提供商类型枚举,便于通过配置选择具体的对象存储实现。
|
||||
/// </summary>
|
||||
public enum StorageProviderKind
|
||||
{
|
||||
/// <summary>
|
||||
/// 腾讯云 COS 对象存储。
|
||||
/// </summary>
|
||||
TencentCos = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 七牛云 Kodo 存储。
|
||||
/// </summary>
|
||||
QiniuKodo = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 阿里云 OSS 存储。
|
||||
/// </summary>
|
||||
AliyunOss = 3
|
||||
}
|
||||
Reference in New Issue
Block a user