16 lines
436 B
C#
16 lines
436 B
C#
namespace BotSharp.Abstraction.Conversations.Models;
|
|
|
|
public class IncomingMessageModel : MessageConfig
|
|
{
|
|
public string Text { get; set; } = string.Empty;
|
|
public virtual string Channel { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("input_message_id")]
|
|
public string? InputMessageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Postback message
|
|
/// </summary>
|
|
public PostbackMessageModel? Postback { get; set; }
|
|
}
|