forked from sanchezvem/PyroFetes
7 lines
172 B
C#
7 lines
172 B
C#
namespace PyroFetes.DTO.PurchaseOrder.Response;
|
|
|
|
public class GetPurchaseOrderDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? PurchaseConditions { get; set; }
|
|
} |