Class1.cs 566 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using static WpfApp4.model.Globals;
  6. using System.Threading.Tasks;
  7. namespace WpfApp4.model
  8. {
  9. public class Hero
  10. {
  11. public string name { get; set; }
  12. public int Age { get; set; }
  13. public string power { get; set; }
  14. public string race { get; set; }
  15. public List<HeroPower> HeroPowerList { get; set; }
  16. public List<HeroAge> HeroAgeList { get; set; }
  17. public List<HeroRace> HeroRaceList { get; set; }
  18. }
  19. }