15 lines
382 B
C#
15 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using gray_messages;
|
|
namespace gray_messages.directorial
|
|
{
|
|
public class command_error : gray_messages.message
|
|
{
|
|
//name of the command that was called
|
|
public string command { get; set; }
|
|
//runtime so far in ms
|
|
public uint runtime { get; set; }
|
|
|
|
public string stderr { get; set; }
|
|
}
|
|
} |