dev: .whosplaying code cleanup

This commit is contained in:
Kwoth
2024-08-16 23:46:16 +00:00
parent f66c105cc0
commit d0aa80a004
3 changed files with 30 additions and 21 deletions

View File

@@ -8,6 +8,4 @@ public class UserXpStats : DbEntity
public long Xp { get; set; }
public long AwardedXp { get; set; }
public XpNotificationLocation NotifyOnLevelUp { get; set; }
}
public enum XpNotificationLocation { None, Dm, Channel }
}

View File

@@ -0,0 +1,7 @@
namespace NadekoBot.Db.Models;
public enum XpNotificationLocation
{
None,
Dm,
}