Before implementing save to textfiles

This commit is contained in:
2020-04-06 23:50:25 +02:00
parent d6f251c822
commit 137d012ab3
7 changed files with 123 additions and 8 deletions

View File

@ -6,10 +6,29 @@ namespace TrackerLibrary.Models
{
public class TournamentModel
{
/// <summary>
/// The unique identifier for this tournament
/// </summary>
public int Id { get; set; }
/// <summary>
/// The name given to this tournament
/// </summary>
public string TournamentName { get; set; }
/// <summary>
/// The amount of money each team needs to put up to enter
/// </summary>
public decimal EntryFee { get; set; }
/// <summary>
/// The set of teams that have entered
/// </summary>
public List<Models.TeamModel> EnteredTeams { get; set; } = new List<Models.TeamModel>();
/// <summary>
/// The list of prizes for various places
/// </summary>
public List<Models.PrizeModel> Prizes { get; set; } = new List<Models.PrizeModel>();
public List<List<Models.MatchupModel>> MyProperty { get; set; } = new List<List<Models.MatchupModel>>();
/// <summary>
/// The matchups per round
/// </summary>
public List<List<Models.MatchupModel>> Rounds { get; set; } = new List<List<Models.MatchupModel>>();
}
}