2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

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] = [:]
}