Created
December 9, 2016 15:36
-
-
Save EllinaKuznetcova/29f99e1698d495fcff903039de64fd88 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
enum ProductType: String { | |
case weekly = "com.example.app.weekly" | |
case monthly = "com.example.app.monthly" | |
case yearly = "com.example.app.yearly" | |
static var all: [ProductType] { | |
return [.weekly, .monthly, .yearly] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment