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

15 lines
423 B
C#
Raw Normal View History

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-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>();
}