Adding database models
This commit is contained in:
18
WD7UVN_HFT_2023241.Models/Employee.cs
Normal file
18
WD7UVN_HFT_2023241.Models/Employee.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Models
|
||||
{
|
||||
internal class Employee
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public string NAME { get; set; }
|
||||
public string EMAIL { get; set; }
|
||||
public string PHONE { get; set; }
|
||||
public int MAINTAINER_ID { get; set; }
|
||||
public int MANAGER { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user