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