Files
telegram-bot/modules/ContentStore/Service/StraightKittiesService.cs
2022-11-14 00:23:36 +02:00

18 lines
595 B
C#

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";
public override StoreItem StoreItem { get; } = new("kitties", "Прон", 40, 100);
public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
{
}
}