using Mirea.Api.Dto.Common;
namespace Mirea.Api.Dto.Requests;
///
/// Represents a request for verifying two-factor authentication.
///
public class TwoFactorAuthRequest
{
///
/// Gets or sets the two-factor authentication code provided by the user.
///
public required string Code { get; set; }
///
/// Gets or sets the type of the two-factor authentication method used (e.g., TOTP, Email).
///
public TwoFactorAuthentication Method { get; set; }
}