123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using static WpfApp4.model.Globals;
- using System.Threading.Tasks;
- namespace WpfApp4.model
- {
- public class Hero
- {
- public string name { get; set; }
- public int Age { get; set; }
- public string power { get; set; }
- public string race { get; set; }
- public bool meta { get; set; }
- public List<HeroPower> HeroPowerList { get; set; }
- public List<HeroAge> HeroAgeList { get; set; }
- public List<HeroRace> HeroRaceList { get; set; }
- public DateOnly dateOfLastVaccination { get; set; }
- public string photo { get; set;}
- }
- }
|