metatext/DB/Sources/DB/Entities/LoadMore.swift
2020-10-05 15:50:05 -07:00

18 lines
334 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Mastodon
public struct LoadMore: Hashable {
public let timeline: Timeline
public let afterStatusId: Status.Id
public let beforeStatusId: Status.Id
}
public extension LoadMore {
enum Direction {
case up
case down
}
}