dotnettutorial-asp-dot-net-mvc/FirstMVCDemo/Models/Employee.cs

17 lines
422 B
C#
Raw Normal View History

2021-06-10 16:15:36 +10:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace FirstMVCDemo.Models
{
public class Employee
{
public int EmployeeId { get; set; }
public string Name { get; set; }
public string Gender { get; set; }
2021-06-11 15:44:31 +10:00
public string Department { get; set; }
2021-06-10 16:15:36 +10:00
public decimal Salary { get; set; }
2021-06-11 15:44:31 +10:00
public int AddressId { get; set; }
2021-06-10 16:15:36 +10:00
}
}