10 lines
251 B
C#
10 lines
251 B
C#
namespace Project.Application.DTOs.TwoFactorAuth
|
|
{
|
|
public class TwoFactorSetupDto
|
|
{
|
|
public string SecretKey { get; set; }
|
|
public string QrCodeImageUrl { get; set; }
|
|
public string ManualEntryKey { get; set; }
|
|
}
|
|
}
|