Advertisement
Guest User

Person Class

a guest
Jul 28th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class Person
  2. {
  3. public string FirstName { get; set; }
  4. public string LastName { get; set; }
  5. public string Hobbies { get; set; }
  6. public int Age { get; set; }
  7. public string Country {get; set;}
  8. public string Address { get; set; }
  9. public string Phone { get; set; }
  10. public string Gender { get; set; }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement