Files
telegram-bot/modules/ContentStore/API/ISomeRandomApi.cs
T

8 lines
206 B
C#
Raw Normal View History

2023-07-28 23:13:56 +03:00
using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.API;
public interface ISomeRandomApi
{
public Task<SomeRandomApiAnimalResponse> GetAnimalAsync(string animalId);
}