metatext/DB/Sources/DB/Entities/LoadMore.swift

18 lines
334 B
Swift
Raw Permalink Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Mastodon
2020-10-03 09:19:05 +00:00
public struct LoadMore: Hashable {
public let timeline: Timeline
2020-10-05 22:50:05 +00:00
public let afterStatusId: Status.Id
public let beforeStatusId: Status.Id
}
2020-10-03 09:19:05 +00:00
public extension LoadMore {
enum Direction {
case up
case down
}
}