21 lines
446 B
Swift
21 lines
446 B
Swift
//
|
|
// CredentialsControllerProtocols.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 13.10.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol CredentialsControllerInput: AnyObject { }
|
|
|
|
protocol CredentialsControllerOutput: AnyObject {
|
|
var email: String? { get }
|
|
var username: String? { get }
|
|
var password: String? { get }
|
|
|
|
func didTapTutorial()
|
|
func didTapSkip()
|
|
}
|