11 lines
194 B
C#
11 lines
194 B
C#
|
using Chatbot.Api.Domain.Entities;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Chatbot.Api.Domain.Repositories
|
|||
|
{
|
|||
|
public interface IBotRepository
|
|||
|
{
|
|||
|
Task<Bot[]> GetBots();
|
|||
|
}
|
|||
|
}
|