using System; using System.Collections.Generic; using silver_messages; namespace silver_messages.directorial { public class command_output : 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 stdout { get; set; } } }