BotSharp/src/Infrastructure/BotSharp.Abstraction/Graph/IGraphDb.cs
2024-08-15 18:19:10 -05:00

11 lines
220 B
C#

using BotSharp.Abstraction.Graph.Models;
namespace BotSharp.Abstraction.Graph;
public interface IGraphDb
{
public string Name { get; }
Task<GraphSearchData> Search(string query, GraphSearchOptions options);
}