Files

18 lines
604 B
C#
Raw Permalink Normal View History

2022-11-14 00:23:36 +02:00
using System.Net.Http.Headers;
using BotFramework.Utils;
using Kruzya.TelegramBot.Core.Data;
using Microsoft.Extensions.Configuration;
using Telegram.Bot.Types.InputFiles;
using West.TelegramBot.ContentStore.Model;
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
public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
{
}
}