mattermost-mobile/ios/MattermostShare/Section.swift
2020-11-17 14:20:58 -03:00

13 lines
245 B
Swift

import Foundation
class Section: NSObject, NSCopying {
var title: String?
var items: [Item] = []
func copy(with zone: NSZone? = nil) -> Any {
let copy = Section()
copy.title = title
copy.items = items
return copy
}
}