mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-09 14:01:55 -04:00
14 lines
260 B
Swift
14 lines
260 B
Swift
//
|
|
// HelperToolCommandRequest.swift
|
|
// Mist
|
|
//
|
|
// Created by Nindi Gill on 21/6/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct HelperToolCommandRequest: Codable {
|
|
let type: HelperToolCommandType
|
|
let arguments: [String]
|
|
let environment: [String: String]
|
|
}
|