Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created October 17, 2018 19:17
Show Gist options
  • Save vialyx/6d51346021fee89dec4486a3e20bcd51 to your computer and use it in GitHub Desktop.
Save vialyx/6d51346021fee89dec4486a3e20bcd51 to your computer and use it in GitHub Desktop.
protocol APIObjectMapping {
associatedtype Object
static func with(object: Object?) -> Self?
}
protocol ClientObjectMapping {
associatedtype Object
var object: Object? { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment