mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-08 14:46:42 +01:00
16 lines
312 B
Swift
16 lines
312 B
Swift
//
|
|
// DocumentStore.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Cirno MainasuK on 2021-1-27.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
import MastodonSDK
|
|
|
|
public class DocumentStore: ObservableObject {
|
|
public let appStartUpTimestamp = Date()
|
|
public var defaultRevealStatusDict: [Mastodon.Entity.Status.ID: Bool] = [:]
|
|
}
|