Advertisement
gandalfbialy

Untitled

May 9th, 2025
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class Person
  2. {
  3. public string Name { get; set; }
  4. public int Age { get; set; }
  5. public Address Address { get; set; }
  6. public List<string> Skills { get; set; }
  7. public List<WorkExperience> WorkExperience { get; set; }
  8. }
  9. public class Address
  10. {
  11. public string City { get; set; }
  12. public string Street { get; set; }
  13. public int Number { get; set; }
  14. }
  15. public class WorkExperience
  16. {
  17. public string Company { get; set; }
  18. public int Years { get; set; }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement