metatext/Mastodon/Sources/Mastodon/Entities/AnnouncementReaction.swift
2021-03-28 23:04:14 -07:00

12 lines
280 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import Foundation
public struct AnnouncementReaction: Codable, Hashable {
public let name: String
public let count: Int
public let me: Bool
public let url: UnicodeURL?
public let staticUrl: UnicodeURL?
}