//-----------------------------------------------------------------------
//
// Copyright (c) lanedirt. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
//-----------------------------------------------------------------------
namespace AliasVault.Shared.Models.WebApi.Auth;
using System.ComponentModel.DataAnnotations;
///
/// Login model for two factor authentication step using a recovery code.
///
public class LoginModelRecoveryCode
{
///
/// Gets or sets the recovery code.
///
[Required]
public string RecoveryCode { get; set; } = null!;
}