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

9 lines
222 B
C#
Raw Normal View History

using BotSharp.Abstraction.Conversations.Models;
2023-08-19 00:15:02 +00:00
namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class NewMessageModel : IncomingMessageModel
2023-08-19 00:15:02 +00:00
{
public override string Channel { get; set; } = "openapi";
2023-08-19 00:15:02 +00:00
}