Created
October 15, 2018 04:01
-
-
Save vialyx/73446560690678f57bc4e020387edb1a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
protocol CardType { | |
var holderName: String { get set } | |
var number: String { get set } | |
var expiration: String? { get set } | |
var month: String? { get } | |
var year: String? { get } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment