Neumann_Janos_Verseny/fordulo_3/Program/Doboz.cs
2025-03-14 22:32:46 +01:00

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;
}
}
}