metatext/Mastodon/Sources/Mastodon/Entities/Report.swift
Justin Mazzocchi 579f64f089
Reporting
2020-11-29 18:54:11 -08:00

13 lines
228 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct Report: Codable, Hashable {
public let id: Id
public let actionTaken: Bool
}
public extension Report {
typealias Id = String
}