Files

12 lines
405 B
C#
Raw Permalink Normal View History

2022-08-30 00:48:49 +03:00
using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public class CapyApiService : IRandomMediaService
{
public StoreItem StoreItem { get; } = new("capybara", "Капибара", 60, 25);
public async Task<RandomMedia> GetRandomMediaAsync()
{
return new RandomMedia($"https://api.capy.lol/v1/capybara?{new Random().Next(0, 10000)}");
2022-08-30 00:48:49 +03:00
}
}