szimulacio/SzimulacioOOP/Ceg.cs
2024-09-24 13:00:05 +02:00

19 lines
402 B
C#

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