mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
15 lines
308 B
Swift
15 lines
308 B
Swift
|
|
public extension VisibleMessage {
|
|
|
|
@objc(SNQuote)
|
|
class Quote : NSObject, NSCoding {
|
|
|
|
public required init?(coder: NSCoder) {
|
|
fatalError("Not implemented.")
|
|
}
|
|
|
|
public func encode(with coder: NSCoder) {
|
|
fatalError("Not implemented.")
|
|
}
|
|
}
|
|
}
|