BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/IRichContentService.cs
2023-12-18 16:38:12 -06:00

7 lines
142 B
C#

namespace BotSharp.Abstraction.Messaging;
public interface IRichContentService
{
List<IRichMessage> ConvertToMessages(string content);
}