migrated to ASP.Net Core

This commit is contained in:
RaidMax
2018-02-21 19:29:23 -06:00
parent 8aae31d10d
commit 3f82ecacfc
4407 changed files with 311698 additions and 124726 deletions

View File

@ -0,0 +1,11 @@
@{
Layout = null;
}
@model List<SharedLibrary.Dtos.PenaltyInfo>
@{
foreach (var penalty in Model)
{
Html.RenderPartial("_Penalty", penalty);
}
}

View File

@ -0,0 +1,11 @@
@{
Layout = null;
}
@model IEnumerable<SharedLibrary.Dtos.ServerInfo>
@{
foreach (var s in Model)
{
Html.RenderPartial("../Server/_Server", s);
}
}