Skip to content

Instantly share code, notes, and snippets.

@corespider
Created July 6, 2020 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/3b5e6876c6a2dc10e8ade6ebbf8d15b3 to your computer and use it in GitHub Desktop.
Save corespider/3b5e6876c6a2dc10e8ade6ebbf8d15b3 to your computer and use it in GitHub Desktop.
CoreSpider-Employee Property Class
public class Employee
{
public int EmpID { get; set; }
public string EmpName { get; set; }
public string Mobile { get; set; }
public string PresentAddress { get; set; }
public string Area { get; set; }
public string City { get; set; }
public string Country { get; set; }
public string Qualification { get; set; }
public string Email { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment