Files
telegram-bot/modules/ContentStore/Service/DogApiService.cs
T
2022-02-16 18:08:02 +02:00

9 lines
308 B
C#

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