BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/MessageResponseModel.cs

9 lines
207 B
C#
Raw Normal View History

2023-08-19 00:15:02 +00:00
namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class MessageResponseModel
{
public string Text { get; set; }
2023-08-20 20:20:16 +00:00
public string Function { get; set; }
public object Data { get; set; }
2023-08-19 00:15:02 +00:00
}