Skip to content

Instantly share code, notes, and snippets.

@shabib87
Last active February 25, 2017 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shabib87/268fa42786f63b6b2cbaa420eedcaea4 to your computer and use it in GitHub Desktop.
Save shabib87/268fa42786f63b6b2cbaa420eedcaea4 to your computer and use it in GitHub Desktop.
class Biriyani {
let count: Int
let size: OrderSize
let spiceRange: SpiceRange
let type: BiriyaniType
init (count: Int = 1, size: OrderSize = .medium, spiceRange: SpiceRange = .spicy, type: BiriyaniType = .nonveg) {
self.count = count
self.size = size
self.spiceRange = spiceRange
self.type = type
}
}
class Restaurant {
var biriyaniOrder1 = Biriyani(size: .medium, spiceRange: .extraHot)
var biriyaniOrder2 = Biriyani(spiceRange: .extraHot)
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment