using System.Collections.Generic; using Wizard.Battle; public class AttachingAbilityInfo { public SkillBase Skill { get; private set; } public List TargetCards { get; private set; } public AttachingAbilityInfo(SkillBase skill, List targetCards) { Skill = skill; TargetCards = targetCards; } }