elliebot/src/EllieBot/Db/Models/xp/XpSettings.cs

10 lines
No EOL
271 B
C#

#nullable disable
namespace EllieBot.Db.Models;
public class XpSettings : DbEntity
{
public ulong GuildId { get; set; }
public HashSet<XpRoleReward> RoleRewards { get; set; } = new();
public HashSet<XpCurrencyReward> CurrencyRewards { get; set; } = new();
}