namespace BetterGenshinImpact.GameTask.AutoFight.Model;
///
/// 多次识别出战角色结果上下文
///
public class AvatarActiveCheckContext
{
///
/// 出战标识识别结果的次数统计
///
public int[] ActiveIndexByArrowCount { get; set; } = new int[4];
///
/// 累计识别失败次数
///
public int TotalCheckFailedCount { get; set; } = 0;
}