using System; using System.Collections.Generic; using System.Text; namespace Tiobon.Core.Model.ViewModels { /// /// 消息模板dto(如何填写数据,请参考微信模板即可) /// 作者:胡丁文 /// 时间:2020-4-1 09:32:16 /// public class WeChatCardMsgDetailDto { /// /// 消息模板 /// public string template_id { get; set; } /// /// 标题 /// public string first { get; set; } /// /// 标题颜色(颜色代码都必须为#开头的16进制代码) /// public string colorFirst { get; set; } = "#173177"; /// /// 内容1 /// public string keyword1 { get; set; } /// /// 内容1颜色 /// public string color1 { get; set; } = "#173177"; /// /// 内容2 /// public string keyword2 { get; set; } /// /// 内容2颜色 /// public string color2 { get; set; } = "#173177"; /// /// 内容3 /// public string keyword3 { get; set; } /// /// 内容3颜色 /// public string color3 { get; set; } = "#173177"; /// /// 内容4 /// public string keyword4 { get; set; } /// /// 内容4颜色 /// public string color4 { get; set; } = "#173177"; /// /// 内容5 /// public string keyword5 { get; set; } /// /// 内容5颜色 /// public string color5 { get; set; } = "#173177"; /// /// 备注信息 /// public string remark { get; set; } /// /// 备注信息颜色 /// public string colorRemark { get; set; } = "#173177"; /// /// 跳转连接 /// public string url { get; set; } } }