Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Created November 26, 2018 09:53
Show Gist options
  • Save Sajjon/90d30b670e097ebcede75f3d533b49b1 to your computer and use it in GitHub Desktop.
Save Sajjon/90d30b670e097ebcede75f3d533b49b1 to your computer and use it in GitHub Desktop.
Medium article: SLC part 1 - ViewModelType
protocol ViewModelType {
associatedtype Input: InputType
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