23 lines
469 B
C#
23 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WinFormsLibrary1.Models
|
|
{
|
|
public class Employee
|
|
{
|
|
public string Name { get; set; }
|
|
public string Position { get; set; }
|
|
public string Department { get; set; }
|
|
public Employee() { }
|
|
public Employee(string name, string position, string department)
|
|
{
|
|
Name = name;
|
|
Position = position;
|
|
Department = department;
|
|
}
|
|
}
|
|
}
|