NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Items/ItemCartDto.cs
2026-02-12 10:41:44 +08:00

16 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Items
{
public class ItemCartDto
{
public long ItemCartId { get; set; }
public long ItemNo { get; set; }
public decimal Qty { get; set; }
}
}