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

10 lines
356 B
C#

using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public class DogApiService : AnimalAsAService
{
public override StoreItem StoreItem { get; } = new("dog", "Пёсель", 40, 20);
public DogApiService(IHttpClientFactory factory) :
base(factory, new Uri("https://api.thedogapi.com/v1/")) {}
}