Files
Prog4_Beadando/WD7UVN_HFT_2023241.Models/Employee.cs

19 lines
449 B
C#
Raw Normal View History

2023-10-18 10:47:33 +02:00
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; }
}
}