12 lines
330 B
C#
12 lines
330 B
C#
using BotSharp.Abstraction.Messaging.Enums;
|
|
|
|
namespace BotSharp.Abstraction.Conversations.Models;
|
|
|
|
public class ConversationSenderActionModel
|
|
{
|
|
[JsonPropertyName("conversation_id")]
|
|
public string ConversationId { get; set; }
|
|
[JsonPropertyName("sender_action")]
|
|
public SenderActionEnum SenderAction { get; set; }
|
|
}
|