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

15 lines
510 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;
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)
{
}
}