21 lines
381 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|