mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
13 lines
279 B
C#
13 lines
279 B
C#
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.ActivationCode;
|
|
|
|
/// <summary>
|
|
/// 激活码兑换输入
|
|
/// </summary>
|
|
public class ActivationCodeRedeemInput
|
|
{
|
|
/// <summary>
|
|
/// 激活码
|
|
/// </summary>
|
|
public string Code { get; set; } = string.Empty;
|
|
}
|