Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. protocol CodableSomething: Codable {}
  2.  
  3. protocol CodableAnotherThing: Codable {
  4. var something: CodableSomething { get }
  5. }
  6.  
  7. struct Model: CodableAnotherThing {
  8. var something: CodableSomething
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement