17 lines
350 B
C#
17 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Sms.Aliyun
|
|
{
|
|
public class SmsAliyunOptions
|
|
{
|
|
public string AccessKeyId { get; set; }
|
|
public string AccessKeySecret { get; set; }
|
|
|
|
public string SignName { get; set; }
|
|
}
|
|
}
|