Files
telegram-bot/modules/ContentStore/API/ISomeRandomApi.cs
2023-07-28 23:14:05 +03:00

8 lines
206 B
C#

using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.API;
public interface ISomeRandomApi
{
public Task<SomeRandomApiAnimalResponse> GetAnimalAsync(string animalId);
}