2023-08-19 00:15:02 +00:00
|
|
|
namespace BotSharp.OpenAPI.ViewModels.Conversations;
|
|
|
|
|
|
2023-09-11 17:09:41 +00:00
|
|
|
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
|
|
|
}
|