21 lines
379 B
C#
21 lines
379 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;
|
|
}
|
|
}
|
|
}
|