ZhiYi/ZhiYi.Core.Application/Dtos/SignatureCreationDto.cs

24 lines
489 B
C#

namespace ZhiYi.Core.Application.Dtos
{
/// <summary>
/// 生成签名定义
/// </summary>
public class SignatureCreationDto
{
/// <summary>
/// 密钥
/// </summary>
public string AppSecret { get; set; }
/// <summary>
/// 路由地址
/// </summary>
public string Path { get; set; }
/// <summary>
/// 令牌
/// </summary>
public string Token { get; set; }
}
}