1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00
Files
IW4M-Admin/WebfrontCore/Views/Penalty/PenaltyInfoList.cshtml

11 lines
190 B
Plaintext

@{
Layout = null;
}
@model IList<SharedLibraryCore.Dtos.PenaltyInfo>
@{
foreach (var penalty in Model)
{
await Html.RenderPartialAsync("_Penalty", penalty);
}
}