10 lines
No EOL
271 B
C#
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();
|
|
} |