mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
13 lines
272 B
C#
13 lines
272 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.CardFlip;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 使用邀请码输入
|
||
|
|
/// </summary>
|
||
|
|
public class UseInviteCodeInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 邀请码
|
||
|
|
/// </summary>
|
||
|
|
public string InviteCode { get; set; } = string.Empty;
|
||
|
|
}
|