MVC-kopplingen till tournament tracker är klar
This commit is contained in:
20
MVCUI/Models/TournamentMVCDetailsModel.cs
Normal file
20
MVCUI/Models/TournamentMVCDetailsModel.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace MVCUI.Models
|
||||
{
|
||||
public class TournamentMVCDetailsModel
|
||||
{
|
||||
[Display(Name = "Tournament Name")]
|
||||
public string TournamentName { get; set; }
|
||||
|
||||
public List<RoundMVCModel> Rounds { get; set; } = new List<RoundMVCModel>();
|
||||
|
||||
//List of matchups
|
||||
public List<MatchupMVCModel> Matchups { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user