Files

14 lines
499 B
C#
Raw Permalink Normal View History

2022-11-14 00:23:36 +02:00
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", "Прон (не геи)", 40, 110);}