Example of custom context class used to store cards collection
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