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

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace TrackerLibrary.Models
@ -7,7 +8,11 @@ namespace TrackerLibrary.Models
public class TeamModel
{
public int Id { get; set; }
[Display(Name = "Team Member List")]
public List<PersonModel> TeamMembers { get; set; } = new List<PersonModel>();
[Display(Name = "Team Name")]
//[StringLength(100, MinimumLength = 2)]
//[Required]
public string TeamName { get; set; }
}
}