namespace Yi.Framework.AiHub.Application.Contracts.Dtos.CardFlip;
///
/// 邀请码信息输出
///
public class InviteCodeOutput
{
///
/// 我的邀请码
///
public string? MyInviteCode { get; set; }
///
/// 本周邀请人数
///
public int InvitedCount { get; set; }
///
/// 是否已被邀请
///
public bool IsInvited { get; set; }
///
/// 邀请历史记录
///
public List InvitationHistory { get; set; } = new();
}
///
/// 邀请历史记录项
///
public class InvitationHistoryItem
{
///
/// 被邀请人昵称(脱敏)
///
public string InvitedUserName { get; set; } = string.Empty;
///
/// 邀请时间
///
public DateTime InvitationTime { get; set; }
///
/// 本周所在
///
public string WeekDescription { get; set; } = string.Empty;
}