Employee.cs 335 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace MonoTests.DataObjects
  6. {
  7. public class Employee
  8. {
  9. public string FirstName
  10. {
  11. get;
  12. set;
  13. }
  14. public string LastName
  15. {
  16. get;
  17. set;
  18. }
  19. }
  20. }