preparing to feed abstract

[FIXME] test won't end
This commit is contained in:
Paul Schneider 2018-07-15 06:47:41 +02:00
commit a3d3294061
33 changed files with 720 additions and 241 deletions

View file

@ -0,0 +1,13 @@
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; }
}
}