mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
25 lines
549 B
C#
25 lines
549 B
C#
|
|
using Yi.Framework.AiHub.Domain.Shared.Enums;
|
||
|
|
|
||
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.ActivationCode;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 批量生成激活码输出
|
||
|
|
/// </summary>
|
||
|
|
public class ActivationCodeCreateOutput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 商品类型
|
||
|
|
/// </summary>
|
||
|
|
public ActivationCodeGoodsTypeEnum GoodsType { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 数量
|
||
|
|
/// </summary>
|
||
|
|
public int Count { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 激活码列表
|
||
|
|
/// </summary>
|
||
|
|
public List<string> Codes { get; set; } = new();
|
||
|
|
}
|