25 lines
451 B
Swift
25 lines
451 B
Swift
//
|
|
// SidebarSection.swift
|
|
// AutoCat2Mac
|
|
//
|
|
// Created by Selim Mustafaev on 03.07.2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class SidebarSection {
|
|
|
|
let name: String
|
|
let items: [SidebarItem]
|
|
|
|
init(name: String, items: [SidebarItem]) {
|
|
self.name = name
|
|
self.items = items
|
|
}
|
|
|
|
static func database(items: [SidebarItem]) -> SidebarSection {
|
|
|
|
SidebarSection(name: "Vehicles DB", items: items)
|
|
}
|
|
}
|