generated from egmont11/ASP.Net-Core-MVC-Template
7 lines
162 B
C#
7 lines
162 B
C#
namespace Eshop.Application.Auth;
|
|
|
|
public sealed record UserWithRolesDto(
|
|
UserDto User,
|
|
IReadOnlyList<string> Roles,
|
|
IReadOnlyList<string> AllRoles);
|