Guest User

Town

a guest
Jun 9th, 2016
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. using System.Collections.Generic;
  2.  
  3. namespace StudentGroups
  4. {
  5. public class Town
  6. {
  7. public string Name { get; set; }
  8. public int SeatCount { get; set; }
  9. public List<Student> Students { get; set; }
  10. }
  11. }
Add Comment
Please, Sign In to add comment