16 lines
335 B
C#
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; }
|
|
}
|
|
}
|