BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichContentService.cs

7 lines
142 B
C#
Raw Normal View History

2023-12-18 22:38:12 +00:00
namespace BotSharp.Abstraction.Messaging;
public interface IRichContentService
{
List<IRichMessage> ConvertToMessages(string content);
}