using ComponentLibrary1.tree_list;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TestApp1
{
	internal class Employee
	{
		public string Department { get; set; }
		public string JobTitle { get; set; }
		public string FullName { get; set; }
		public Employee()
		{
			Department = string.Empty;
			JobTitle = string.Empty;
			FullName = string.Empty;
		}
		public Employee(string department, string jobTitle, string fullName)
		{
			Department = department;
			JobTitle = jobTitle;
			FullName = fullName;
		}
	}
}