using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SzimulacioOOP { internal class Ceg { public List Autok { get; set; } public Fonok Igazgato { get; set; } public List Vezetok { get; set; } public Benzinkut Benzinkut { get; set; } public Ceg() { } } }