mattermost-mobile/ios/MattermostShare/Section.swift
Elias Nahum 3feaa8e6bb
iOS Native Share Extension (Swift) (#2575)
* iOS Native Share Extension (Swift)

* Re-arrange files

* Fix .gitignore
2019-02-26 14:31:57 -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
}
}