using System.Collections.Generic; using Microsoft.AspNet.Http.Authentication; using Microsoft.AspNet.Identity; namespace Yavsc.ViewModels.Manage { public class ManageLoginsViewModel { public IList CurrentLogins { get; set; } public IList OtherLogins { get; set; } } }