using Hotline.Share.Enums.Push; namespace Hotline.Share.Dtos.Push { public class MessageDto { /// /// 消息推送业务 /// public EPushBusiness PushBusiness { get; set; } /// /// 接收姓名 /// public string Name { get; set; } /// /// 接收手机号码 /// public string TelNumber { get; set; } /// /// 外部业务唯一编号 /// public string? ExternalId { get; set; } /// /// 关联工单编号 /// public string? OrderId { get; set; } /// /// 推送平台 /// public EPushPlatform? PushPlatform { get; set; } = EPushPlatform.Sms; /// /// 模板 /// public string? TemplateCode { get; set; } /// /// 内容 /// public string? Content { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// 参数 /// public List? Params { get; set; } } }