Class3.cs 604 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace WpfApp4.model
  9. {
  10. public class HeroPower
  11. {
  12. public string title { get; set; }
  13. }
  14. public class HeroAge
  15. {
  16. public string title { get; set; }
  17. public int AgeFrom { get; set; }
  18. public int AgeTo { get; set; }
  19. }
  20. public class HeroRace
  21. {
  22. public string title { get; set; }
  23. public string RaceFrom { get; set; }
  24. public string RaceTo { get; set; }
  25. }
  26. }