Skip to content

Instantly share code, notes, and snippets.

@MartinMoizard
Created September 3, 2017 09:01
Show Gist options
  • Save MartinMoizard/8aecd9acd1c30b5958fef0b12bb7ee15 to your computer and use it in GitHub Desktop.
Save MartinMoizard/8aecd9acd1c30b5958fef0b12bb7ee15 to your computer and use it in GitHub Desktop.
ViewModelType
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