Organized some db models into folders

This commit is contained in:
Kwoth
2023-07-15 14:35:56 +00:00
parent 8f62a46016
commit 22e8b62df2
25 changed files with 11 additions and 0 deletions

View File

@@ -1,18 +0,0 @@
#nullable disable warnings
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 = 0,
Frame = 1,
}

View File

@@ -28,4 +28,10 @@
<ProjectReference Include="..\Nadeko.Common\Nadeko.Common.csproj" />
</ItemGroup>
</Project>