This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/EllieBot/Db/Models/SarGroup.cs

18 lines
428 B
C#
Raw Normal View History

2024-11-27 22:38:06 +13:00
using System.ComponentModel.DataAnnotations;
2024-09-20 21:07:27 +12:00
namespace EllieBot.Db.Models;
public sealed class SarGroup
2024-09-20 21:07:27 +12:00
{
2024-11-27 22:38:06 +13:00
[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; }
2024-09-20 21:07:27 +12:00
2024-11-27 22:38:06 +13:00
[MaxLength(100)]
public string? Name { get; set; }
2024-09-20 21:07:27 +12:00
}