metatext/Mastodon/Sources/Mastodon/Entities/Tag.swift
Justin Mazzocchi 6b27cd1579
Render tags
2021-01-23 19:12:30 -08:00

18 lines
373 B
Swift

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