19 lines
402 B
C#
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() { }
|
|
}
|
|
}
|