14 lines
349 B
C#
14 lines
349 B
C#
using BotSharp.Abstraction.Conversations.Dtos;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.OpenAPI.ViewModels.Conversations;
|
|
|
|
public class UpdateMessageModel
|
|
{
|
|
[JsonPropertyName("message")]
|
|
public ChatResponseModel Message { get; set; } = null!;
|
|
|
|
[JsonPropertyName("inner_index")]
|
|
public int InnerIndex { get; set; }
|
|
}
|