Teams creation and prizes creation are implemented

This commit is contained in:
2020-05-05 23:25:28 +02:00
parent fc49f33575
commit 9596d9aa47
15 changed files with 387 additions and 4 deletions

View File

@ -0,0 +1,19 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
namespace MVCUI.Models
{
public class TeamMVCModel
{
[Display(Name = "Team Name")]
[StringLength(100, MinimumLength = 2)]
[Required]
public string TeamName { get; set; }
[Display(Name = "Team Member List")]
public List<SelectListItem> TeamMembers { get; set; } = new List<SelectListItem>();
public List<string> SelectedTeamMembers { get; set; } = new List<string>();
}
}