metatext/Mastodon/Sources/Mastodon/Entities/Tag.swift

18 lines
380 B
Swift
Raw Normal View History

2020-08-30 23:33:11 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Tag: Codable, Hashable {
public let name: String
2021-03-29 06:04:14 +00:00
public let url: UnicodeURL
2021-01-24 03:12:30 +00:00
public let history: [History]?
}
public extension Tag {
struct History: Codable, Hashable {
public let day: String
public let uses: String
public let accounts: String
}
2020-08-30 23:33:11 +00:00
}