forked from zelo72/mastodon-ios
34 lines
652 B
Swift
34 lines
652 B
Swift
//
|
|
// Persistence.swift
|
|
// Persistence
|
|
//
|
|
// Created by Cirno MainasuK on 2021-8-18.
|
|
// Copyright © 2021 Twidere. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum Persistence { }
|
|
|
|
|
|
extension Persistence {
|
|
public enum MastodonUser { }
|
|
public enum Status { }
|
|
public enum Poll { }
|
|
public enum PollOption { }
|
|
public enum Tag { }
|
|
public enum SearchHistory { }
|
|
public enum Notification { }
|
|
}
|
|
|
|
extension Persistence {
|
|
public class PersistCache<T> {
|
|
var dictionary: [String : T] = [:]
|
|
|
|
public init(dictionary: [String : T] = [:]) {
|
|
self.dictionary = dictionary
|
|
}
|
|
}
|
|
}
|
|
|