PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AbazovAppView/Worker.cs

23 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbazovAppView
{
public class Worker
{
public Worker(string department, int groupNumber, string name)
{
this.department = department;
this.groupNumber = groupNumber;
this.name = name;
}
public string department;
public int groupNumber;
public string name;
}
}