mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
- Users can't check other user's bank balances. - Added a button on a .$ command which, when clicked, sends you a message with your bank balance that only you can see. - Updated pagination, it now uses buttons instead of reactions - using .h <command group> (atm only .bank is a proper group) will list commands with their descriptions in that group
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; }
|
|
} |