using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models
{
///
/// Used for 2FA verification
///
[DataContract(Name = "code", Namespace = "")]
public class Verify2FACodeModel
{
[Required]
[DataMember(Name = "code", IsRequired = true)]
public string Code { get; set; }
[Required]
[DataMember(Name = "provider", IsRequired = true)]
public string Provider { get; set; }
///
/// Flag indicating whether the sign-in cookie should persist after the browser is closed.
///
[DataMember(Name = "isPersistent", IsRequired = true)]
public bool IsPersistent { get; set; }
///
/// Flag indicating whether the current browser should be remember, suppressing all further two factor authentication prompts.
///
[DataMember(Name = "rememberClient", IsRequired = true)]
public bool RememberClient { get; set; }
}
}