feat: 完成账号绑定功能

This commit is contained in:
橙子
2024-11-03 01:38:12 +08:00
parent 5e096a277c
commit 5054391f6b
9 changed files with 329 additions and 85 deletions

View File

@@ -0,0 +1,20 @@
namespace Yi.Framework.DigitalCollectibles.Application.Contracts.Dtos.InvitationCode;
public class InvitationCodeGetOutputDto
{
/// <summary>
/// 是否填写了邀请码(是否被邀请)
/// </summary>
public bool IsInvited { get; set; }
/// <summary>
/// 积分-邀请数量
/// </summary>
public int PointsNumber { get; set; }
/// <summary>
/// 邀请码
/// </summary>
public string InvitationCode { get; set; }
}