No repository description.
namespace App.BLL.DTO;
public class AppUserBllDto
{
public Guid Id { get; set; }
public string FirstName { get; set; } = "";
public string LastName { get; set; } = "";
public string? Email { get; set; }
public string FullName => $"{FirstName} {LastName}".Trim();
}