Files
RavenDB.Identity/Sample/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs
T
2017-08-29 15:42:24 -05:00

17 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace Sample.Models.AccountViewModels
{
public class LoginWithRecoveryCodeViewModel
{
[Required]
[DataType(DataType.Text)]
[Display(Name = "Recovery Code")]
public string RecoveryCode { get; set; }
}
}