mirror of
https://github.com/metabolist/metatext.git
synced 2025-01-23 03:18:05 +00:00
12 lines
228 B
Swift
12 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
|
|
}
|