// // Status.swift // MastoSearch // // Created by Shadowfacts on 12/10/21. // import Foundation struct Status: Identifiable { let id: String let url: String let summary: String? let content: String let published: Date }