12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using static wpf_data.models.Globals;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- using wpf_data;
- namespace wpf_data.models
- {
- public class People
- {
- public string Name { get; set; }
- public int Age { get; set; }
- public int Price { get; set; }
- public string Gender { get; set; }
- public string Place { get; set; }
- public bool IsFavorite { get; set; }
- public List<PeopleAge> PeopleAgeList { get; set; }
- public List<PeopleGender> PeopleGenderList { get; set; }
- public List<PeoplePlace> PeoplePlaceList { get; set; }
- public DateOnly dateOfConnections { get; set; }
- }
- }
|