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,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MVCUI.Models
{
public class RoundMVCModel
{
public int RoundNumber { get; set; }
public string RoundName { get; set; }
public RoundStatus Status { get; set; }
}
}