mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-19 16:58:36 +00:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
// All Rights Reserved. See LICENSE file for details.
|
|
|
|
export class ProcessCommand {
|
|
command: string;
|
|
process_name: string;
|
|
error?: string;
|
|
}
|