Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Last active September 20, 2018 17:24
Show Gist options
  • Save Sajjon/161e1d970996fec5bd1ddce276b4d230 to your computer and use it in GitHub Desktop.
Save Sajjon/161e1d970996fec5bd1ddce276b4d230 to your computer and use it in GitHub Desktop.
ViewModelType.swift - credits to: Sergey Shulga @sergdort
protocol ViewModelType {
associatedtype Input
associatedtype Output
func transform(input: Input) -> Output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment