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

10 lines
271 B
C#
Raw Normal View History

2024-09-20 21:07:27 +12:00
#nullable disable
namespace EllieBot.Db.Models;
public class XpSettings : DbEntity
{
public ulong GuildId { get; set; }
2024-09-20 21:07:27 +12:00
public HashSet<XpRoleReward> RoleRewards { get; set; } = new();
public HashSet<XpCurrencyReward> CurrencyRewards { get; set; } = new();
}