26 lines
568 B
C#
26 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Test_App
|
|
{
|
|
public class TestClass
|
|
{
|
|
public string FIO { get; set; }
|
|
|
|
public int workExperience { get; set; }
|
|
|
|
public string department { get; set; }
|
|
|
|
public TestClass() { }
|
|
public TestClass(string FIO, int workExperience, string department)
|
|
{
|
|
this.FIO = FIO;
|
|
this.workExperience = workExperience;
|
|
this.department = department;
|
|
}
|
|
}
|
|
}
|