BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/IncomingMessageModel.cs

10 lines
245 B
C#
Raw Normal View History

2023-10-27 15:18:48 +00:00
using BotSharp.Abstraction.Models;
namespace BotSharp.Abstraction.Conversations.Models;
2023-10-27 15:18:48 +00:00
public class IncomingMessageModel : MessageConfig
{
public string Text { get; set; } = string.Empty;
2023-10-27 15:18:48 +00:00
public virtual string Channel { get; set; }
}