Files
zszq-trs/YLErpWeb/Views/Shared/common_options.cshtml
T
2024-05-09 14:06:26 +08:00

13 lines
142 B
Plaintext

@model List<string>
@{
Layout = null;
}
@{
foreach(string c in Model)
{
<option value="@c">@c</option>
}
}