You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
744 B

  1. namespace Swift.web.Library
  2. {
  3. public class FullName
  4. {
  5. private string _firstName;
  6. private string _middleName;
  7. private string _lastName1;
  8. private string _lastName2;
  9. public string FirstName
  10. {
  11. get { return _firstName; }
  12. set { _firstName = value; }
  13. }
  14. public string MiddleName
  15. {
  16. get { return _middleName; }
  17. set { _middleName = value; }
  18. }
  19. public string LastName1
  20. {
  21. get { return _lastName1; }
  22. set { _lastName1 = value; }
  23. }
  24. public string LastName2
  25. {
  26. get { return _lastName2; }
  27. set { _lastName2 = value; }
  28. }
  29. }
  30. }