mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
15 lines
559 B
C#
15 lines
559 B
C#
using Kruzya.TelegramBot.Core.Data;
|
|
using Microsoft.Extensions.Configuration;
|
|
using West.TelegramBot.ContentStore.Model;
|
|
using West.TelegramBot.ContentStore.Option;
|
|
|
|
namespace West.TelegramBot.ContentStore.Service;
|
|
|
|
public class GayKittiesService : AbstractKittiesService
|
|
{
|
|
public GayKittiesService(IConfiguration configuration, AllowNsfw allowNsfw) : base(configuration, allowNsfw)
|
|
{
|
|
}
|
|
|
|
protected override string VideoType => "gay";
|
|
public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);} |