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

17 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SzimulacioOOP
{
internal class Sofor : Szemely
{
public double Tarca { get; set; }
public Sofor(string Nev) : base(Nev)
{
}
}
}