13 lines
175 B
Swift
13 lines
175 B
Swift
//
|
|
// NodeResponse.swift
|
|
//
|
|
//
|
|
// Created by Nut.Tech on 11.01.2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct NodeResponse: Decodable {
|
|
public let actions: [NodeAction]
|
|
}
|