Truck & Staff DTO

This commit is contained in:
2025-10-02 16:53:02 +02:00
parent a179a3fab0
commit 801dc9dec8
12 changed files with 77 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
namespace PF3.DTO.Staff.Response;
public class ReadStaffDto
{
public int? Id { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? Profession { get; set; }
public string? Email { get; set; }
}