refactoring

This commit is contained in:
2017-05-02 13:10:23 +02:00
parent 63044b0efd
commit d590df1c92
40 changed files with 161 additions and 103 deletions

View File

@ -1,21 +0,0 @@
namespace Yavsc.Models.Auth
{
public class UserInfo {
public UserInfo()
{
}
public UserInfo(ApplicationUser user)
{
UserId = user.Id;
UserName = user.UserName;
Avatar = user.Avatar;
}
public string UserId { get; set; }
public string UserName { get; set; }
public string Avatar { get; set; }
}
}