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

9 lines
304 B
C#

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