Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class Player
  2. {
  3. public string name {get; set;}
  4. public int age {get; set;}
  5. public double salary {get; set;}
  6. public string gender {get; set;}
  7. public DateTime contractSignDate {get; set;}
  8. }
  9.  
  10. public class Team
  11. {
  12. public string teamName {get; set;}
  13. public string sportPlayed {get; set;}
  14. public List<Player> players {get; set;}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement