11 lines
245 B
C#
11 lines
245 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; }
|
|
|
|
public string? CustomerType { get; set; }
|
|
} |