default avatar

This commit is contained in:
Paul Schneider 2017-02-01 19:53:10 +01:00
commit be1d75ce73
35 changed files with 1626 additions and 15 deletions

View file

@ -30,10 +30,4 @@ namespace Yavsc.Models.Auth
public string Address { get; set; }
}
public class UserInfo {
public string UserId { get; set; }
public string UserName { get; set; }
public string Avatar { get; set; }
}
}

View file

@ -0,0 +1,9 @@
namespace Yavsc.Models.Auth
{
public class UserInfo {
public string UserId { get; set; }
public string UserName { get; set; }
public string Avatar { get; set; }
}
}