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