Garazsszimulator/Garázsszimulátor/Diszpecser.cs
László Imre Gyuricza c77004d401 Class-ok létrehozása
2023-10-26 11:19:52 +02:00

20 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Garázsszimulátor
{
class Diszpecser : Szemelyzet
{
public Diszpecser(string nev, bool nem, int kor, int egyenleg)
{
this.nev = nev;
this.nem = nem;
this.kor = kor;
this.egyenleg = egyenleg;
}
}
}