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

21 lines
374 B
C#
Raw Normal View History

2024-09-30 20:14:34 +04:00
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;
}
}
}