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

16 lines
361 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Items
{
public class ItemCartVM
{
public List<long>? ItemCartId { get; set; }
public List<decimal>? Qty { get; set; }
public List<long>? ItemNo { get; set; }
}
}