BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs

14 lines
377 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Messaging.Models.RichContent
{
public class RichContent<T>
{
2023-10-29 01:56:21 +00:00
public Recipient Recipient { get; set; } = new Recipient();
/// <summary>
/// RESPONSE
/// </summary>
[JsonPropertyName("messaging_type")]
public string MessagingType => "RESPONSE";
public T Message { get; set; }
}
}