mirror of
https://github.com/metabolist/metatext.git
synced 2025-02-21 08:06:16 +00:00
13 lines
334 B
Swift
13 lines
334 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public struct Context: Codable, Hashable {
|
|
public let ancestors: [Status]
|
|
public let descendants: [Status]
|
|
|
|
public init(ancestors: [Status], descendants: [Status]) {
|
|
self.ancestors = ancestors
|
|
self.descendants = descendants
|
|
}
|
|
}
|