Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public struct Models {
  2.  
  3. public struct SetLanguage {
  4. /// Data struct sent to Interactor
  5. public struct Request {
  6. let language: Language
  7. }
  8. /// Data struct sent to Presenter
  9. public struct Response {
  10. let result: Result<Language>
  11. }
  12. /// Data struct sent to ViewController
  13. public struct ViewModel {
  14. let content: Content<Language>
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement