Files
Yi.Framework/Yi.Furion.Net6/Yi.Framework.Module/Sms/Aliyun/SmsAliyunOptions.cs
2023-04-15 17:35:22 +08:00

15 lines
347 B
C#

namespace Yi.Framework.Module.Sms.Aliyun
{
public class SmsAliyunOptions
{
public string AccessKeyId { get; set; }
public string AccessKeySecret { get; set; }
public string SignName { get; set; }
public string TemplateCode { get; set; }
public bool EnableFeature { get; set; } = true;
}
}