metatext-app-ios-iphone-ipad/Mastodon/Sources/Mastodon/Entities/Tag.swift

18 lines
380 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Tag: Codable, Hashable {
public let name: String
public let url: UnicodeURL
public let history: [History]?
}
public extension Tag {
struct History: Codable, Hashable {
public let day: String
public let uses: String
public let accounts: String
}
}