BotSharp/src/Infrastructure/BotSharp.Abstraction/Chart/IBotSharpChartService.cs

15 lines
496 B
C#
Raw Normal View History

2025-09-05 19:51:26 +00:00
using BotSharp.Abstraction.Chart.Models;
namespace BotSharp.Abstraction.Chart;
public interface IBotSharpChartService
{
public string Provider { get; }
Task<ChartDataResult?> GetConversationChartData(string conversationId, string messageId, ChartDataOptions options)
=> throw new NotImplementedException();
Task<ChartCodeResult?> GetConversationChartCode(string conversationId, string messageId, ChartCodeOptions options)
=> throw new NotImplementedException();
}