Employee.cs 283 B

12345678910111213
  1. using System;
  2. namespace PDFTest
  3. {
  4. public class Employee
  5. {
  6. public int Id { get; set;}
  7. public string Name { get; set;}
  8. public string Department { get; set;}
  9. public int Salary { get; set;}
  10. public DateTime HireDate { get; set;}
  11. }
  12. }