Class1.cs 795 B

12345678910111213141516171819202122232425262728
  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. using System.Threading.Tasks;
  8. using System.Collections.Generic;
  9. using wpf_data;
  10. namespace wpf_data.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 bool IsFavorite { get; set; }
  20. public List<PeopleAge> PeopleAgeList { get; set; }
  21. public List<PeopleGender> PeopleGenderList { get; set; }
  22. public List<PeoplePlace> PeoplePlaceList { get; set; }
  23. public DateOnly dateOfConnections { get; set; }
  24. }
  25. }