yavsc/Yavsc/Views/Shared/_FileListPartial.cshtml

6 lines
82 B
Text
Raw Normal View History

2016-05-30 18:30:35 +02:00
@model IList<string>
@foreach (var file in Model) {
<li>@file</li>
}