yavsc/src/Yavsc/Views/Shared/_FileListPartial.cshtml

6 lines
No EOL
82 B
Text

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