PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AbazovAppView/Department.cs
2023-10-19 22:07:56 +04:00

21 lines
375 B
C#

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