using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Entity { /// /// 钉钉机器人发送Dto /// public class WarnMessageDto { /// /// 标题 /// public string Title { get; set; } = ""; /// /// 发送的消息 /// public string Message { get; set; } = ""; /// /// 标签 /// public string KeyTag { get; set; } = ""; /// /// 钉钉机器人Url /// public string DingUrl { get; set; } = ""; } }