7 lines
145 B
C#
7 lines
145 B
C#
namespace PyroFetes.DTO.Customer.Response;
|
|
|
|
public class GetCustomerDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Note { get; set; }
|
|
} |