metatext/DB/Sources/DB/Entities/CollectionSection.swift

14 lines
349 B
Swift
Raw Normal View History

2021-01-23 06:15:52 +00:00
// Copyright © 2021 Metabolist. All rights reserved.
import Foundation
public struct CollectionSection: Hashable {
public let items: [CollectionItem]
2021-01-31 01:43:48 +00:00
public let searchScope: SearchScope?
2021-01-23 06:15:52 +00:00
2021-01-31 01:43:48 +00:00
public init(items: [CollectionItem], searchScope: SearchScope? = nil) {
2021-01-23 06:15:52 +00:00
self.items = items
2021-01-31 01:43:48 +00:00
self.searchScope = searchScope
2021-01-23 06:15:52 +00:00
}
}