metatext/DB/Sources/DB/Entities/CollectionSection.swift
2021-01-30 17:43:48 -08:00

14 lines
349 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import Foundation
public struct CollectionSection: Hashable {
public let items: [CollectionItem]
public let searchScope: SearchScope?
public init(items: [CollectionItem], searchScope: SearchScope? = nil) {
self.items = items
self.searchScope = searchScope
}
}