23 lines
430 B
C#
23 lines
430 B
C#
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;
|
|
}
|
|
}
|
|
}
|