Class3.cs 516 B

12345678910111213141516171819202122232425
  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_data.models.Globals;
  7. namespace wpf_data.models
  8. {
  9. public class PeopleGender
  10. {
  11. public string title { get; set; }
  12. }
  13. public class PeopleAge
  14. {
  15. public string title { get; set; }
  16. public int AgeFrom { get; set; }
  17. public int AgeTo { get; set; }
  18. }
  19. public class PeoplePlace
  20. {
  21. public string title { get; set; }
  22. }
  23. }