Files
social-media/src/Application/Common/Models/UserModel.cs
Jonathan Bourdon 72e243cf84 Adds messages api
2024-07-01 02:42:34 -04:00

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; }
}