NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/PO/POFormData.cs
2026-02-19 17:23:28 +08:00

17 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.PO
{
public class POFormData
{
public POHeader? Header { get; set; }
public List<POLineItem>? LineItems { get; set; }
public List<POCharges>? Charges { get; set; }
public List<DocRequired>? DocsRequired { get; set; }
}
}