mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
9 lines
199 B
C#
9 lines
199 B
C#
#nullable disable
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class UserXpStats : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public ulong GuildId { get; set; }
|
|
public long Xp { get; set; }
|
|
} |