using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Sms.Tool.Models
{
public class SendSmsModel
{
/// 模板id
public string TemplateId { get; set; } = string.Empty;
/// 发送手机号
public List Mobiles { get; set; } = new List();
/// 发送参数
public List Params { get; set; } = new List();
/// 短信签名
public string SignName { get; set; } = "航天医科";
public List FormatterMobiles => Mobiles.Select(x => $"+86{x}").ToList();
}
}