24 lines
448 B
C#
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; }
|
|
|
|
}
|
|
}
|