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