Files
lubelog/Views/Vehicle/_Collaborators.cshtml
DESKTOP-GENO133\IvanPlex c972f9c8a2 added collaborator view.
2024-01-13 18:19:52 -07:00

7 lines
133 B
Plaintext

@model List<UserCollaborator>
<ul>
@foreach (UserCollaborator user in Model)
{
<li>@user.UserName</li>
}
</ul>