KOP_PIbd-33_Volkov_N.A._Tik.../VolkovLabs/WinFormsTestApp/Department.cs

21 lines
377 B
C#
Raw Normal View History

2024-10-02 20:08:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinFormsTestApp
{
public class Department
{
public string name;
public int sells;
public Department(string name, int sells)
{
this.name = name;
this.sells = sells;
}
}
}