Files
social-media/src/Application/Common/Models/UserModel.cs
2024-06-02 15:59:17 -04:00

11 lines
274 B
C#

namespace Hutopy.Application.Common.Models;
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; }
}