using Yi.Framework.AiHub.Domain.Shared.Enums; namespace Yi.Framework.AiHub.Application.Contracts.Dtos.ActivationCode; /// /// 批量生成激活码输入 /// public class ActivationCodeCreateInput { /// /// 商品类型 /// public ActivationCodeGoodsTypeEnum GoodsType { get; set; } /// /// 数量 /// public int Count { get; set; } = 1; /// /// 是否允许多人各使用一次 /// public bool IsReusable { get; set; } /// /// 是否限制同类型只能兑换一次 /// public bool IsSameTypeOnce { get; set; } /// /// 备注 /// public string? Remark { get; set; } }