Klasse Decks hinzugefügt mit Konstruktor

This commit is contained in:
NBTEMP\bib
2026-08-19 14:06:51 +02:00
parent d493d32f1f
commit c7ae281113
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Casino
{
internal class Decks
{
int Deckid { get; set; }
int Kartenid { get; set; }
string name { get; set; }
public Decks(int d, int k, string n)
{
Deckid = d;
Kartenid = k;
name = n;
}
}
}