25 lines
503 B
C#
25 lines
503 B
C#
|
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 VerifyCodeAct
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 手机号码
|
|||
|
/// </summary>
|
|||
|
public string Mobile { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 验证码
|
|||
|
/// </summary>
|
|||
|
public string Code { get; set; }
|
|||
|
}
|
|||
|
}
|