Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. struct InnerModel<T: SomeProtocol> {
  2. let someProp: T
  3. }
  4.  
  5. struct OuterModel<T: SomeProcotol> {
  6. let innerModel: InnerModel<T>
  7. }
  8.  
  9. class ViewController<T: SomeProcotol> {
  10. let model: OuterModel<T>
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement