mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
9 lines
190 B
C#
9 lines
190 B
C#
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class BankUser : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public long Balance { get; set; }
|
|
} |