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

12 lines
329 B
C#
Raw Normal View History

2024-03-16 14:43:00 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class PostbackMessageModel
{
public string FunctionName { get; set; } = string.Empty;
public string Payload { get; set; } = string.Empty;
/// <summary>
/// Parent message id
/// </summary>
public string ParentId { get; set; } = string.Empty;
}