Add project files.

This commit is contained in:
szigetiatilla
2025-05-09 19:00:14 +02:00
parent c1f2219868
commit c1be3a0ed7
8 changed files with 231 additions and 0 deletions

21
OsztoProgram/Kartyalap.cs Normal file
View File

@@ -0,0 +1,21 @@
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;
}
}
}