Created
October 17, 2018 19:17
-
-
Save vialyx/6d51346021fee89dec4486a3e20bcd51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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