namespace Yi.Framework.AiHub.Application.Contracts.Dtos.CardFlip;
///
/// 翻牌输出
///
public class FlipCardOutput
{
///
/// 翻牌序号(1-10)
///
public int FlipNumber { get; set; }
///
/// 是否中奖
///
public bool IsWin { get; set; }
///
/// 奖励金额(token数)
///
public long? RewardAmount { get; set; }
///
/// 奖励描述
///
public string? RewardDesc { get; set; }
///
/// 剩余可翻次数
///
public int RemainingFlips { get; set; }
}