19 lines
523 B
C#
19 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.ViewModel.PO
|
|
{
|
|
public class PRItemList
|
|
{
|
|
public List<long>? PRDetailsId { get; set; }
|
|
public List<long>? PRNo{ get; set; }
|
|
public List<decimal>? Quantity { get; set; }
|
|
public List<decimal>? UnitPrice { get; set; }
|
|
public List<decimal>? Amount { get; set; }
|
|
public List<string>? Specification { get; set; }
|
|
}
|
|
}
|