9 lines
192 B
C#
9 lines
192 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.Login;
|
|
|
|
public sealed record LoginResponse(
|
|
Guid UserId,
|
|
Guid TenantId,
|
|
string Email,
|
|
string TenantKey,
|
|
string[] Roles
|
|
); |