Created
October 15, 2018 03:54
-
-
Save vialyx/48bbb1ea700b7eedff284e5e1f50f6d4 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 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