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

24 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace SzimulacioOOP
{
internal class Fonok : Szemely
{
public Fonok(string Nev) : base(Nev)
{
}
public void Elkuld(List<Auto> autok)
{
}
}
}