diff --git a/src/WorkFlowCheck.Common/DTO/MobileUserDTO.cs b/src/WorkFlowCheck.Common/DTO/MobileUserDTO.cs index 8a31a43..38d11bc 100644 --- a/src/WorkFlowCheck.Common/DTO/MobileUserDTO.cs +++ b/src/WorkFlowCheck.Common/DTO/MobileUserDTO.cs @@ -12,6 +12,7 @@ namespace WorkFlowCheck.Common.DTO public string? UserName { get; set; } public string? FirstName { get; set; } public string? LastName { get; set; } + public string? Fullname => $"{LastName} {FirstName}"; public string? Email { get; set; } public bool NFCActive { get; set; } public string NFCCode { get; set; } = null!;