8 lines
172 B
C#
8 lines
172 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.Login;
|
|
|
|
public sealed record LoginResponse(
|
|
Guid UserId,
|
|
Guid TenantId,
|
|
string Email,
|
|
string TenantKey
|
|
); |