Files
Projet4/PyroFetes/DTO/Contact/Response/GetContactDto.cs
2025-12-04 17:45:06 +01:00

14 lines
432 B
C#

namespace PyroFetes.DTO.Contact.Response;
public class GetContactDto
{
public int Id { get; set; }
public string? LastName { get; set; }
public string? FirstName { get; set; }
public string? PhoneNumber { get; set; }
public string? Email { get; set; }
public string? Address { get; set; }
public string? City { get; set; }
public string? Role { get; set; }
public int? CustomerId { get; set; }
}