9 lines
306 B
C#
9 lines
306 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.IssueTokenPair;
|
|
|
|
public sealed class IssueTokenPairRequest
|
|
{
|
|
public Guid UserId { get; init; }
|
|
public Guid TenantId { get; init; } = default!;
|
|
public string Tenant { get; init; } = default!;
|
|
public string Email { get; init; } = default!;
|
|
} |