Created
September 3, 2017 09:01
-
-
Save MartinMoizard/8aecd9acd1c30b5958fef0b12bb7ee15 to your computer and use it in GitHub Desktop.
ViewModelType
This file contains 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 ViewModelType { | |
associatedtype Input | |
associatedtype Output | |
var input: Input { get } | |
var output: Output { get } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment