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;
|
2024-03-16 14:43:00 +00:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Postback message
|
|
|
|
|
/// </summary>
|
|
|
|
|
public PostbackMessageModel? Postback { get; set; }
|
2024-05-03 19:57:44 +00:00
|
|
|
|
|
|
|
|
public List<BotSharpFile> Files { get; set; } = new List<BotSharpFile>();
|
2023-09-11 17:09:41 +00:00
|
|
|
}
|