PIbd-32_Chubykina_P.P._COP_11/COP/WinFormsTest/Department.cs

21 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinFormsTest
{
public class Department
{
public string name;
public int sells;
public Department(string name, int sells)
{
this.name = name;
this.sells = sells;
}
}
}