Files
yavsc/src/Yavsc.Abstract/Identity/UserInfo.cs
Paul Schneider 7a06ce1deb
Some checks failed
Dotnet build and test / log-the-inputs (push) Failing after 2s
Dotnet build and test / build (push) Failing after 1s
User list
2025-08-19 21:32:17 +01:00

24 lines
514 B
C#

namespace Yavsc.Abstract.Identity
{
public class UserInfo {
public UserInfo()
{
}
public UserInfo(string userId, string userName, string email, string avatar)
{
UserId = userId;
UserName = userName;
Email = email;
Avatar = avatar;
}
public string UserId { get; set; }
public string UserName { get; set; }
public string Email { get; }
public string Avatar { get; set; }
}
}