Guest User

Untitled

a guest
Nov 27th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. protocol AuthenticationUseCase: AnyObject {
  2. func signIn(request: SignInRequest) -> Observable<Void>
  3. }
  4.  
  5. struct SignInRequest {
  6. let username: String
  7. let password: String
  8. }
Add Comment
Please, Sign In to add comment