2023-09-11 17:09:41 +00:00
|
|
|
namespace BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
|
2023-10-27 15:18:48 +00:00
|
|
|
public class IncomingMessageModel : MessageConfig
|
2023-09-11 17:09:41 +00:00
|
|
|
{
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2023-11-06 01:54:54 +00:00
|
|
|
public virtual string Channel { get; set; } = string.Empty;
|
2023-09-11 17:09:41 +00:00
|
|
|
}
|