Neumann_Janos_Verseny/fordulo_2/Program/Jatekos.cs
2025-03-05 18:51:43 +01:00

23 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Program
{
class Jatekos
{
public string Nev { get; set; }
public int Pontszam { get; set; }
}
class Kor
{
public Jatekos jatekos { get; set; }
public int[] dobasok { get; set; }
}
}