Enumeration Classes - Part 1 (PaymentType Enum)
public enum PaymentType | |
{ | |
DebitCard = 0, | |
CreditCard = 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public enum PaymentType | |
{ | |
DebitCard = 0, | |
CreditCard = 1 | |
} |