emoticon_api/ARW.Model/Dto/Api/Pay/GoodsRequest.cs
2023-10-13 13:36:46 +08:00

24 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Carts;
namespace ARW.Model.Dto.Api.Pay
{
/// <summary>
/// 待结算的商品对象Api
///
/// @author lwh
/// @date 2023-09-24
/// </summary>
public class GoodsRequest
{
/// <summary>
/// 购物车ID
/// </summary>
public int CartId { get; set; }
}
}