13 lines
361 B
C#
13 lines
361 B
C#
namespace Hutopy.Application.Common.Models;
|
|
|
|
// TODO: Review nullable affectation here
|
|
public class UserModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? PortraitUrl { get; set; }
|
|
}
|