2023-07-28 20:04:05 +03:00
|
|
|
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 StraightKittiesService : AbstractKittiesService
|
|
|
|
|
{
|
|
|
|
|
protected override string VideoType => "straight";
|
2022-11-14 13:54:37 +02:00
|
|
|
public override StoreItem StoreItem { get; } = new("kitties_straight", "Прон", 40, 100);
|
2022-11-14 00:23:36 +02:00
|
|
|
|
2023-07-28 22:44:51 +03:00
|
|
|
public StraightKittiesService(IKittiesApi api, AllowNsfw allowNsfw) : base(api, allowNsfw)
|
2022-11-14 00:23:36 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|