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!; }