diff --git a/lotto.cs b/lotto.cs index 5d81724..f77f4b3 100644 --- a/lotto.cs +++ b/lotto.cs @@ -10,4 +10,15 @@ namespace ProjektGlueckspiel // Hier können Sie Ihre Lotto-Logik implementieren. } } + class Spieler + { + public string Name { get; set; } + public int[] Tipps { get; set; } + + public Spieler(string name, int[] tipps) + { + Name = name; + Tipps = tipps; + } + } } \ No newline at end of file