40 lines
785 B
C#
40 lines
785 B
C#
|
using Api.Framework.SDK;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Api.Framework.Events
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 发送消息
|
|||
|
/// </summary>
|
|||
|
public class SendMessageEvent
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 机器人类型
|
|||
|
/// </summary>
|
|||
|
public ChatType ChatType { get;internal set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 消息正文
|
|||
|
/// </summary>
|
|||
|
public string Message { get; internal set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 发送者
|
|||
|
/// </summary>
|
|||
|
public object Sender { get; internal set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 接收者
|
|||
|
/// </summary>
|
|||
|
public object Receive { get; internal set; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|