profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
AppUserBllDto.cs 287 bytes
1 namespace App.BLL.DTO;
2
3 public class AppUserBllDto
4 {
5 public Guid Id { get; set; }
6 public string FirstName { get; set; } = "";
7 public string LastName { get; set; } = "";
8 public string? Email { get; set; }
9
10 public string FullName => $"{FirstName} {LastName}".Trim();
11 }
12