21 lines
343 B
Swift
21 lines
343 B
Swift
//
|
|
// SideMenuItem.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Murad Shabanov on 17.03.2022.
|
|
// Copyright © 2022 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum SideMenuItemType {
|
|
case dock
|
|
case notification(unread: Bool)
|
|
case preferences
|
|
}
|
|
|
|
struct SideMenuItem {
|
|
var image: String
|
|
var type: SideMenuItemType
|
|
}
|