mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
17 lines
345 B
C#
17 lines
345 B
C#
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class XpShopOwnedItem : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public XpShopItemType ItemType { get; set; }
|
|
public bool IsUsing { get; set; }
|
|
public string ItemKey { get; set; }
|
|
}
|
|
|
|
public enum XpShopItemType
|
|
{
|
|
Background,
|
|
Frame,
|
|
} |