22 lines
377 B
C#
22 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OsztoProgram
|
|
{
|
|
internal class Kartyalap
|
|
{
|
|
public string Szin;
|
|
public string Ertek;
|
|
|
|
public Kartyalap(string Szin, string Ertek)
|
|
{
|
|
this.Szin=Szin;
|
|
this.Ertek=Ertek;
|
|
}
|
|
|
|
}
|
|
}
|