Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created October 15, 2018 03:54
Show Gist options
  • Save vialyx/48bbb1ea700b7eedff284e5e1f50f6d4 to your computer and use it in GitHub Desktop.
Save vialyx/48bbb1ea700b7eedff284e5e1f50f6d4 to your computer and use it in GitHub Desktop.
protocol Printable {
// protocol definition goes here
}
protocol Selectable {
// protocol definition goes here
}
struct EmailItem: Printable, Selectable {
// structure definition goes here
}
class EmailComposer: Printable, Selectable {
// class definition goes here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment