Added Discord Bot
This commit is contained in:
parent
e7a0c9ae68
commit
e445b2a181
48 changed files with 1255 additions and 157 deletions
20
Lieb/Models/GuildWars2/Raid/RaidRole.cs
Normal file
20
Lieb/Models/GuildWars2/Raid/RaidRole.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Lieb.Models.GuildWars2.Raid
|
||||
{
|
||||
public class RaidRole
|
||||
{
|
||||
public int RaidRoleId { get; set; }
|
||||
public int Spots { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(40, ErrorMessage = "Name too long (40 character limit).")]
|
||||
public string Name { get; set; } = String.Empty;
|
||||
|
||||
[Required]
|
||||
[StringLength(200, ErrorMessage = "Description too long (200 character limit).")]
|
||||
public string Description { get; set; } = String.Empty;
|
||||
|
||||
public bool IsRandomSignUpRole { get; set; } = false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue