using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Program { internal class Doboz { public char Type { get; set; } public Doboz(char Type) { this.Type = Type; } } }