Adds messages api

This commit is contained in:
Jonathan Bourdon
2024-06-27 12:37:59 -04:00
parent 97a2c296f1
commit 623972bc36
21 changed files with 485 additions and 61 deletions

View File

@@ -1,5 +1,6 @@
namespace Hutopy.Application.Common.Models;
// TODO: Review nullable affectation here
public class UserModel
{
public string? Id { get; set; }
@@ -7,4 +8,5 @@ public class UserModel
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? Email { get; set; }
public string? PortraitUrl { get; set; }
}