dyakonovr e57bd46f1f done
2024-09-29 21:11:27 +04:00

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;
}
}
}