Files
yavsc/Yavsc/Views/Shared/_FileListPartial.cshtml
2016-05-30 18:30:35 +02:00

6 lines
82 B
Plaintext

@model IList<string>
@foreach (var file in Model) {
<li>@file</li>
}