You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
735 B
C#
32 lines
735 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Common.Entity
|
|
{
|
|
/// <summary>
|
|
/// 钉钉机器人发送Dto
|
|
/// </summary>
|
|
public class WarnMessageDto
|
|
{
|
|
/// <summary>
|
|
/// 标题
|
|
/// </summary>
|
|
public string Title { get; set; } = "";
|
|
/// <summary>
|
|
/// 发送的消息
|
|
/// </summary>
|
|
public string Message { get; set; } = "";
|
|
/// <summary>
|
|
/// 标签
|
|
/// </summary>
|
|
public string KeyTag { get; set; } = "";
|
|
/// <summary>
|
|
/// 钉钉机器人Url
|
|
/// </summary>
|
|
public string DingUrl { get; set; } = "";
|
|
}
|
|
}
|