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.
 
 
 
 
 

22 lines
656 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.DAL.GridAutoDemo
{
public class EmployeeModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public string Email { get; set; }
public string MobileNo { get; set; }
public string DepartName { get; set; }
public DateTime DOB { get; set; }
public DateTime CompanyJoinDate { get; set; }
public int WorkDayOnWeek { get; set; }
public string Description { get; set; }
public string Flag { get; set; }
}
}