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

14 lines
503 B
C#
Raw Normal View History

2022-11-14 00:23:36 +02:00
using Kruzya.TelegramBot.Core.Data;
using Microsoft.Extensions.Configuration;
using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public class GayKittiesService : AbstractKittiesService
{
public GayKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
{
}
protected override string VideoType => "gay";
2022-11-14 13:54:37 +02:00
public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);}