NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/PR/ItemReceivingList.cs
2026-01-20 07:44:30 +08:00

17 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.PR
{
public class ItemReceivingList
{
public List<decimal>? QuantityReceived { get; set; }
public List<long>? PRDetailsId { get; set; }
public List<long>? PRNo { get; set; }
public List<long>? ItemNo { get; set; }
}
}