Last active
January 30, 2017 15:43
-
-
Save scottaddie/b800f6353ed91e4a03bdd5b4ba54a6eb to your computer and use it in GitHub Desktop.
Example of custom context class used to store cards collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HandContext | |
{ | |
public List<Card> Cards { get; set; } = new List<Card>(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment