mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-04 08:06:37 +08:00
14 lines
304 B
C#
14 lines
304 B
C#
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
||
|
|
|
||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Pay;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 创建订单输入DTO
|
||
|
|
/// </summary>
|
||
|
|
public class CreateOrderInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 商品类型
|
||
|
|
/// </summary>
|
||
|
|
public GoodsTypeEnum GoodsType { get; set; }
|
||
|
|
}
|