Files
AspNetCore.Identity.MongoDb…/sample/MongoIdentitySample.Mvc/Models/ManageViewModels/ManageLoginsViewModel.cs
T
2017-11-19 18:35:40 +00:00

14 lines
362 B
C#

using System.Collections.Generic;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Identity;
namespace MongoIdentitySample.Mvc.Models.ManageViewModels
{
public class ManageLoginsViewModel
{
public IList<UserLoginInfo> CurrentLogins { get; set; }
public IList<AuthenticationScheme> OtherLogins { get; set; }
}
}