Files
yavsc/Yavsc/ViewModels/Manage/ManageLoginsViewModel.cs
Paul Schneider 5f26e97f0a preparing to feed abstract
test should run ok [modulo config]
2018-07-16 00:31:32 +02:00

14 lines
340 B
C#

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; }
}
}