mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
18 lines
411 B
C#
18 lines
411 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Pay;
|
|
|
|
/// <summary>
|
|
/// 创建订单输入DTO
|
|
/// </summary>
|
|
public class CreateOrderInput
|
|
{
|
|
/// <summary>
|
|
/// 商品类型
|
|
/// </summary>
|
|
[Required]
|
|
public GoodsTypeEnum GoodsType { get; set; }
|
|
|
|
public string? ReturnUrl{ get; set; }
|
|
} |