Klasse Decks hinzugefügt mit Konstruktor
This commit is contained in:
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user