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

10 lines
288 B
C#
Raw Normal View History

2023-11-27 03:04:48 +00:00
using BotSharp.Abstraction.Conversations.Enums;
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
{
2023-11-27 03:04:48 +00:00
public override string Channel { get; set; } = ConversationChannel.OpenAPI;
2023-08-19 00:15:02 +00:00
}