1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using static wpf_template.models.Globals;
- namespace wpf_template.models
- {
- public class PeopleGender
- {
- public string title { get; set; }
- }
- public class PeopleAge
- {
- public string title { get; set; }
- public int AgeFrom { get; set; }
- public int AgeTo { get; set; }
- }
- public class PeoplePlace
- {
- public string title { get; set; }
- }
- }
|