Přemístění + dodělání funkčnosti webu.

This commit is contained in:
Matěj Kubíček
2026-09-17 17:50:48 +02:00
parent 3a35d10227
commit f223721fbd
128 changed files with 714 additions and 172 deletions
@@ -0,0 +1,10 @@
using StuzkovakWeb.Entities;
namespace StuzkovakWeb.Models;
public class UserWithRolesViewModel
{
public UserEntity UserEntity { get; set; } = null!;
public IList<string> Roles { get; set; } = [];
public IList<string> AllRoles { get; set; } = [];
}