I use class Card which contains 2 enumerated properties (suite - hearts diamonds spades and clubs) and card value from 2 to A. And overrides ToString() method to returns som
You can start enums with number (although it is preferred to start at zero)
public enum Card { Two = 2, Three, Four, ... }