9 lines
193 B
C#
9 lines
193 B
C#
namespace Project.Application.DTOs.TwoFactorAuth
|
|
{
|
|
public class TwoFactorVerificationDto
|
|
{
|
|
public string Email { get; set; }
|
|
public string Code { get; set; }
|
|
}
|
|
}
|