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.

21 lines
656 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.DAL.GridAutoDemo
  6. {
  7. public class EmployeeModel
  8. {
  9. public int Id { get; set; }
  10. public string Name { get; set; }
  11. public string Address { get; set; }
  12. public string Email { get; set; }
  13. public string MobileNo { get; set; }
  14. public string DepartName { get; set; }
  15. public DateTime DOB { get; set; }
  16. public DateTime CompanyJoinDate { get; set; }
  17. public int WorkDayOnWeek { get; set; }
  18. public string Description { get; set; }
  19. public string Flag { get; set; }
  20. }
  21. }