15 lines
384 B
C#
15 lines
384 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using silver_messages;
|
|
namespace silver_messages.directorial
|
|
{
|
|
public class command_error : message_directorial
|
|
{
|
|
//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; }
|
|
}
|
|
} |