Files
telegram-bot/modules/ContentStore/Service/CatApiService.cs
2023-07-28 23:14:36 +03:00

10 lines
352 B
C#

using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public class CatApiService : AnimalAsAService
{
public override StoreItem StoreItem { get; } = new("cat", "Котэ", 40, 10);
public CatApiService(IHttpClientFactory factory) :
base(factory, new Uri("https://api.thecatapi.com/v1/")) {}
}