using Kruzya.TelegramBot.Core.Data; using Microsoft.Extensions.Configuration; using West.TelegramBot.ContentStore.API; using West.TelegramBot.ContentStore.Model; using West.TelegramBot.ContentStore.Option; namespace West.TelegramBot.ContentStore.Service.Kitties; public class GayKittiesService : AbstractKittiesService { public GayKittiesService(IKittiesApi api, AllowNsfw allowNsfw) : base(api, allowNsfw) { } protected override string VideoType => "gay"; public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110); }