using System.Collections.Generic;
using System.Linq;
namespace SmsTool.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();
}
}