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