mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
15 lines
514 B
C#
15 lines
514 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 StraightKittiesService : AbstractKittiesService
|
|
{
|
|
protected override string VideoType => "straight";
|
|
public override StoreItem StoreItem { get; } = new("kitties_straight", "Прон", 40, 100);
|
|
|
|
public StraightKittiesService(IKittiesApi api, AllowNsfw allowNsfw) : base(api, allowNsfw)
|
|
{
|
|
}
|
|
} |