hair cut queries by API
This commit is contained in:
parent
b828b06904
commit
e3e35b82e8
2 changed files with 187 additions and 1 deletions
|
|
@ -1,8 +1,20 @@
|
|||
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; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue