12345678910111213141516171819 |
- using System.Collections.Generic;
- using System.Linq;
- namespace SmsTool.Models
- {
- public class SendSmsModel
- {
-
- public string TemplateId { get; set; } = string.Empty;
-
- public List<string> Mobiles { get; set; } = new List<string>();
-
- public List<string> Params { get; set; } = new List<string>();
-
- public string SignName { get; set; } = "杏聆荟";
- public List<string> FormatterMobiles => Mobiles.Select(x => $"+86{x}").ToList();
- }
- }
|