27 lines
579 B
C#
27 lines
579 B
C#
|
using MyCode.Project.Infrastructure.Enumeration;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Act.SendSms
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 发送短信 操作
|
|||
|
/// </summary>
|
|||
|
public class SendSmsAct
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 手机号码
|
|||
|
/// </summary>
|
|||
|
public string Mobile { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 验证码类型。1:验证码
|
|||
|
/// </summary>
|
|||
|
public SendCodeType Type { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|