using System; using System.Collections.Generic; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WpfApp2.model { public class HeroPower { public string title { get; set; } } public class HeroAge { public string title { get; set; } public int AgeFrom { get; set; } public int AgeTo { get; set; } } public class HeroRace { public string title { get; set; } public string RaceFrom { get; set; } public string RaceTo { get; set; } } }