15 lines
306 B
Swift
15 lines
306 B
Swift
//
|
|
// NotificationsBellViewProtocols.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 08.07.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol NotificationsBellViewInput: AnyObject {
|
|
func showBadge(_ show: Bool)
|
|
func set(highlighted: Bool)
|
|
}
|