23 lines
371 B
C#
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; }
|
|
}
|
|
}
|