Reconmap/web-client

View on GitHub
src/models/CommandUsage.ts

Summary

Maintainability
A
0 mins
Test Coverage

interface CommandUsageInterface {

    id?: number;
    command_id?: number;
    creator_uid?: number;
    name?: string;
    description?: string;
    executable_path?: string;
    arguments?: string;
    output_filename?: string;
    output_parser?: string;
}


/**
 * Autogenerated file, do not edit manually. @see https://github.com/reconmap/model-definitions
 */
const CommandUsage : CommandUsageInterface = {


}

export default CommandUsage;