PIbd-33_Nevaeva_KA_COP_28/NevaevaLibrary/TestApp/Department.cs
2023-11-02 23:55:44 +04:00

21 lines
381 B
C#

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