MVC-kopplingen till tournament tracker är klar

This commit is contained in:
2020-05-14 21:16:25 +02:00
parent dc4162db95
commit bd0c6f0a7c
16 changed files with 1206 additions and 931 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MVCUI.Models
{
public class MatchupMVCModel
{
public int MatchupId { get; set; }
public int TournamentId { get; set; }
public int RoundNumber { get; set; }
public int FirstTeamMatchupEntryId { get; set; }
public string FirstTeamName { get; set; }
public double FirstTeamScore { get; set; }
public int SecondTeamMatchupEntryId { get; set; }
public string SecondTeamName { get; set; }
public double SecondTeamScore { get; set; }
}
}