Files
2017-11-19 18:35:40 +00:00

21 lines
483 B
C#

using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
namespace MongoIdentitySample.Mvc.Models.ManageViewModels
{
public class IndexViewModel
{
public bool HasPassword { get; set; }
public IList<UserLoginInfo> Logins { get; set; }
public string PhoneNumber { get; set; }
public bool TwoFactor { get; set; }
public bool BrowserRemembered { get; set; }
public string AuthenticatorKey { get; set; }
}
}