Garazsszimulator/Garázsszimulátor/Sofor.cs

20 lines
402 B
C#
Raw Normal View History

2023-10-26 09:19:52 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Garázsszimulátor
{
class Sofor : Szemelyzet
{
public Sofor(string nev, bool nem, int kor, int egyenleg)
{
this.nev = nev;
this.nem = nem;
this.kor = kor;
this.egyenleg = egyenleg;
}
}
}