Files
Projet4/PyroFetes/DTO/Contact/Response/GetContactDto.cs
carteronm 4e64112a31 First Commit 09/10
# Conflicts:
#	PyroFetes/PyroFetes.csproj
2025-10-16 17:34:55 +02:00

12 lines
353 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? Role { get; set; }
}