18 lines
294 B
C#
18 lines
294 B
C#
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;
|
|
}
|
|
}
|
|
}
|