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