Class1.cs 712 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using static wpf_template.models.Globals;
  7. using System.Threading.Tasks;
  8. using System.Collections.Generic;
  9. using wpf_template;
  10. namespace wpf_template.models
  11. {
  12. public class People
  13. {
  14. public string Name { get; set; }
  15. public int Age { get; set; }
  16. public int Price { get; set; }
  17. public string Gender { get; set; }
  18. public string Place { get; set; }
  19. public List<PeopleAge> PeopleAgeList { get; set; }
  20. public List<PeopleGender> PeopleGenderList { get; set; }
  21. public List<PeoplePlace> PeoplePlaceList { get; set; }
  22. }
  23. }