Files
telegram-bot/modules/ContentStore/Service/StraightKittiesService.cs
T

16 lines
566 B
C#
Raw Normal View History

2023-01-02 19:01:03 +02:00
using Kruzya.TelegramBot.Core.Data;
2022-11-14 00:23:36 +02:00
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 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-21 18:40:24 +03:00
public StraightKittiesService(IConfiguration configuration, AllowNsfw allowNsfw) : base(configuration, allowNsfw)
2022-11-14 00:23:36 +02:00
{
}
}