AppUserBllDto.cs
307 bytes
| 1 | namespace SplitApp.WebApp.Application.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 | |