mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
13 lines
253 B
C#
13 lines
253 B
C#
using Chatbot.Api.Domain.Entities;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chatbot.Api.Domain.Repositories
|
|
{
|
|
public interface IBotRepository
|
|
{
|
|
Task<Bot[]> GetBots();
|
|
Task<Guid> GetBotId(string botName);
|
|
}
|
|
}
|