23 lines
440 B
C#
23 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Carts;
|
|
|
|
namespace ARW.Model.Dto.Api.Carts
|
|
{
|
|
|
|
/// <summary>
|
|
/// 修改购物车商品选中状态Dto
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-08-05
|
|
/// </summary>
|
|
public class CartGoodsNumDto
|
|
{
|
|
public int CartId { get; set; }
|
|
public int CartGoodsNum { get; set; }
|
|
}
|
|
|
|
|
|
}
|