using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory { public class TransactContextDto { public int InventoryId { get; set; } public string ItemName { get; set; } = string.Empty; public long ItemNo { get; set; } public long PRNo { get; set; } public string? LotNo { get; set; } public string? Department { get; set; } public decimal QtyOnHand { get; set; } public decimal QtyIn { get; set; } public decimal QtyOut { get; set; } public IEnumerable Disciplines { get; set; } = []; public IEnumerable OpenRISList { get; set; } = []; } }