franz/franz/silver_messages/directorial/command_output.cs

15 lines
373 B
C#

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; }
}
}