forked from sanchezvem/PyroFetes
10 lines
295 B
C#
10 lines
295 B
C#
using PyroFetes.DTO.PurchaseProduct.Response;
|
|
|
|
namespace PyroFetes.DTO.PurchaseOrder.Response;
|
|
|
|
public class GetPurchaseOrderDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? PurchaseConditions { get; set; }
|
|
public List<GetPurchaseProductDto>? GetPurchaseProductDto { get; set; }
|
|
} |