NadekoBot/NadekoBot.Core/Services/Database/Models/UserXpStats.cs

17 lines
474 B
C#
Raw Normal View History

using System;
namespace NadekoBot.Services.Database.Models
2017-08-22 03:48:45 +00:00
{
public class UserXpStats : DbEntity
{
public ulong UserId { get; set; }
public ulong GuildId { get; set; }
public int Xp { get; set; }
public int AwardedXp { get; set; }
public XpNotificationType NotifyOnLevelUp { get; set; }
public DateTime LastLevelUp { get; set; } = DateTime.UtcNow;
2017-08-22 03:48:45 +00:00
}
public enum XpNotificationType { None, Dm, Channel }
2017-08-22 03:48:45 +00:00
}