using System; namespace PDFTest { public class Employee { public int Id { get; set;} public string Name { get; set;} public string Department { get; set;} public int Salary { get; set;} public DateTime HireDate { get; set;} } }