using System.Collections.Generic; using Microsoft.AspNet.Identity; namespace Mvc.Server.ViewModels.Manage { public class IndexViewModel { public bool HasPassword { get; set; } public IList Logins { get; set; } public string PhoneNumber { get; set; } public bool TwoFactor { get; set; } public bool BrowserRemembered { get; set; } } }