Lieb-Website/Lieb/Models/GuildWars2/Raid/PlannedRaidRole.cs
2022-02-27 00:45:14 +01:00

18 lines
558 B
C#

using System.ComponentModel.DataAnnotations;
namespace Lieb.Models.GuildWars2.Raid
{
public class PlannedRaidRole
{
public int PlannedRaidRoleId { 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;
}
}