forked from EllieBotDevs/elliebot
18 lines
No EOL
428 B
C#
18 lines
No EOL
428 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace EllieBot.Db.Models;
|
|
|
|
public sealed class SarGroup
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int GroupNumber { get; set; }
|
|
public ulong GuildId { get; set; }
|
|
public ulong? RoleReq { get; set; }
|
|
public ICollection<Sar> Roles { get; set; } = [];
|
|
public bool IsExclusive { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string? Name { get; set; }
|
|
} |