17 lines
423 B
C#
17 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.Http.Authentication;
|
|
using Microsoft.AspNet.Identity;
|
|
|
|
namespace TurboLinks.Net.Example.ViewModels.Manage
|
|
{
|
|
public class ManageLoginsViewModel
|
|
{
|
|
public IList<UserLoginInfo> CurrentLogins { get; set; }
|
|
|
|
public IList<AuthenticationDescription> OtherLogins { get; set; }
|
|
}
|
|
}
|