24 lines
428 B
C#
24 lines
428 B
C#
using MiaoYu.Core.Cos.Configs;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MiaoYu.Core.Cos.Models
|
|
{
|
|
/// <summary>
|
|
/// 生成签名
|
|
/// </summary>
|
|
public class CosGenerateSign : TencentCosConfig
|
|
{
|
|
/// <summary>
|
|
/// 允许的前缀
|
|
/// </summary>
|
|
public string Prefixes { get; set; }
|
|
}
|
|
|
|
|
|
}
|