NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/PR/PRItemListRequest.cs
2026-03-02 12:25:08 +08:00

15 lines
313 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 PRItemListRequest
{
public List<long>? ItemNo { get; set; }
public List<decimal>? Qty { get; set; }
}
}