2024-09-20 21:07:27 +12:00
|
|
|
#nullable disable
|
|
|
|
namespace EllieBot.Db.Models;
|
|
|
|
|
|
|
|
public class XpSettings : DbEntity
|
|
|
|
{
|
2025-01-29 22:51:59 +13:00
|
|
|
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();
|
|
|
|
}
|