namespace Mirea.Api.Dto.Responses;
///
/// Represents the response containing the TOTP (Time-Based One-Time Password) key details.
///
public class TotpKeyResponse
{
///
/// Gets or sets the secret key used for TOTP generation.
///
public required string Secret { get; set; }
///
/// Gets or sets the image (QR code) representing the TOTP key.
///
public required string Image { get; set; }
}