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

9 lines
194 B
C#

namespace PyroFetes.DTO.Customer.Response;
public class GetCustomerDto
{
public int Id { get; set; }
public string? Note { get; set; }
public int CustomerTypeId { get; set; }
}