21 lines
411 B
Swift
21 lines
411 B
Swift
//
|
|
// UpgradeViewProtocols.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 24.09.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol UpgradeViewInput: AnyObject {
|
|
func set(title: String?, body: String?)
|
|
func hide()
|
|
func showLoader(_ show: Bool)
|
|
}
|
|
|
|
protocol UpgradeViewOutput: AnyObject {
|
|
func viewIsReady()
|
|
func didTapActionButton()
|
|
}
|