Files
Projet4/PyroFetes/DTO/Contact/Request/UpdateContactDto.cs
2025-10-09 17:12:17 +02:00

12 lines
355 B
C#

namespace PyroFetes.DTO.Contact.Request;
public class UpdateContactDto
{
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; }
}