Files
RavenDB.Identity/Sample.Web.NetCore/Models/ManageViewModels/ManageLoginsViewModel.cs
T
2017-08-23 13:31:58 -05:00

17 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http.Authentication;
using Microsoft.AspNetCore.Identity;
namespace Sample.Web.NetCore.Models.ManageViewModels
{
public class ManageLoginsViewModel
{
public IList<UserLoginInfo> CurrentLogins { get; set; }
public IList<AuthenticationDescription> OtherLogins { get; set; }
}
}