Files

8 lines
206 B
C#
Raw Permalink 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);
}