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

@@ -0,0 +1,9 @@
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Db.Models;
public class BankUser : DbEntity
{
public ulong UserId { get; set; }
public long Balance { get; set; }
}