[store] fix kitties purchasable IDs

This commit is contained in:
Andriy
2022-11-14 13:54:37 +02:00
parent 8a2f5c6ad3
commit a97fac85e4
2 changed files with 2 additions and 2 deletions
@@ -11,4 +11,4 @@ public class GayKittiesService : AbstractKittiesService
} }
protected override string VideoType => "gay"; protected override string VideoType => "gay";
public override StoreItem StoreItem { get; } = new("kitties", "Прон (не геи)", 40, 110);} public override StoreItem StoreItem { get; } = new("kitties_gay", "Прон (не геи)", 40, 110);}
@@ -10,7 +10,7 @@ namespace West.TelegramBot.ContentStore.Service;
public class StraightKittiesService : AbstractKittiesService public class StraightKittiesService : AbstractKittiesService
{ {
protected override string VideoType => "straight"; protected override string VideoType => "straight";
public override StoreItem StoreItem { get; } = new("kitties", "Прон", 40, 100); public override StoreItem StoreItem { get; } = new("kitties_straight", "Прон", 40, 100);
public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db) public StraightKittiesService(IConfiguration configuration, CoreContext db) : base(configuration, db)
{ {