mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-09 14:01:55 -04:00
12 lines
237 B
Swift
12 lines
237 B
Swift
//
|
|
// HelperToolCommandResponse.swift
|
|
// Mist
|
|
//
|
|
// Created by Nindi Gill on 21/6/2022.
|
|
//
|
|
|
|
struct HelperToolCommandResponse: Codable {
|
|
let terminationStatus: Int32
|
|
let standardOutput: String?
|
|
let standardError: String?
|
|
}
|