Files

15 lines
559 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;
2023-07-21 18:40:24 +03:00
using West.TelegramBot.ContentStore.Option;
2022-11-14 00:23:36 +02:00
namespace West.TelegramBot.ContentStore.Service;
public class GayKittiesService : AbstractKittiesService
{
2023-07-21 18:40:24 +03:00
public GayKittiesService(IConfiguration configuration, AllowNsfw allowNsfw) : base(configuration, allowNsfw)
2022-11-14 00:23:36 +02:00
{
}
protected override string VideoType => "gay";
2022-11-14 13:54:37 +02:00
public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);}