yavsc/Yavsc.Server/ViewModels/Manage/ManageLoginsViewModel.cs

13 lines
340 B
C#
Raw Normal View History

2018-03-26 19:27:29 +02:00
using System.Collections.Generic;
using Microsoft.AspNet.Http.Authentication;
using Microsoft.AspNet.Identity;
namespace Yavsc.ViewModels.Manage
{
public class ManageLoginsViewModel
{
public IList<UserLoginInfo> CurrentLogins { get; set; }
public IList<AuthenticationDescription> OtherLogins { get; set; }
}
}