Files
telegram-bot/modules/ContentStore/Service/Kitties/GayKittiesService.cs
2023-07-29 15:03:45 +03:00

15 lines
508 B
C#

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);
}