metatext/Mastodon/Sources/Mastodon/Entities/AnnouncementReaction.swift
2021-01-15 21:31:06 -08:00

12 lines
266 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: URL?
public let staticUrl: URL?
}