2022-11-14 00:23:36 +02:00
|
|
|
using Kruzya.TelegramBot.Core.Data;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2023-07-28 22:44:51 +03:00
|
|
|
using West.TelegramBot.ContentStore.API;
|
2022-11-14 00:23:36 +02:00
|
|
|
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
|
|
|
|
2023-07-28 20:04:05 +03:00
|
|
|
namespace West.TelegramBot.ContentStore.Service.Kitties;
|
2022-11-14 00:23:36 +02:00
|
|
|
|
|
|
|
|
public class GayKittiesService : AbstractKittiesService
|
|
|
|
|
{
|
2023-07-28 22:44:51 +03:00
|
|
|
public GayKittiesService(IKittiesApi api, AllowNsfw allowNsfw) : base(api, allowNsfw)
|
2022-11-14 00:23:36 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string VideoType => "gay";
|
2023-07-28 20:04:05 +03:00
|
|
|
public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);
|
|
|
|
|
}
|