From c51ee750f941be16a601b97b043dd16dded1a549 Mon Sep 17 00:00:00 2001 From: ivanszabo Date: Tue, 15 Apr 2025 18:38:16 +0200 Subject: [PATCH] =?UTF-8?q?MobileUserDTO=20jav=C3=ADt=C3=A1sa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WorkFlowCheck.Common/DTO/MobileUserDTO.cs | 1 + 1 file changed, 1 insertion(+) 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!;