6 lines
82 B
Plaintext
6 lines
82 B
Plaintext
@model IList<string>
|
|
|
|
@foreach (var file in Model) {
|
|
<li>@file</li>
|
|
}
|
|
|