// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct CommentBlockRequest: Codable, Equatable {
    public var handle: String
    public var reason: String?

    public init(handle: String, reason: String? = nil) {
        self.handle = handle
        self.reason = reason
    }
}
