Skip to content

Instantly share code, notes, and snippets.

@EllinaKuznetcova
Created December 9, 2016 15:36
Show Gist options
  • Save EllinaKuznetcova/29f99e1698d495fcff903039de64fd88 to your computer and use it in GitHub Desktop.
Save EllinaKuznetcova/29f99e1698d495fcff903039de64fd88 to your computer and use it in GitHub Desktop.
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