mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
15 lines
510 B
C#
15 lines
510 B
C#
using Kruzya.TelegramBot.Core.Data;
|
|
using Microsoft.Extensions.Configuration;
|
|
using West.TelegramBot.ContentStore.Model;
|
|
|
|
namespace West.TelegramBot.ContentStore.Service;
|
|
|
|
public class StraightKittiesService : AbstractKittiesService
|
|
{
|
|
protected override string VideoType => "straight";
|
|
public override StoreItem StoreItem { get; } = new("kitties_straight", "Прон", 40, 100);
|
|
|
|
public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
|
|
{
|
|
}
|
|
} |