NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/PR/PRList.cs
2026-02-10 14:19:30 +08:00

15 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.PR
{
public class PRList
{
public List<long>? PRDetailsId { get; set; }
public List<long>? ItemNo { get; set; }
}
}