8 lines
246 B
C#
8 lines
246 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.EnableTotp;
|
|
|
|
public sealed class EnableTotpRequest
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Label { get; set; } = default!;
|
|
public string Secret { get; set; } = default!;
|
|
} |