13 lines
339 B
C#
13 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using silver_messages;
|
|
namespace silver_messages.directorial
|
|
{
|
|
public class command_expired : silver_messages.message
|
|
{
|
|
//name of the command that was called
|
|
public string command { get; set; }
|
|
//runtime in ms
|
|
public uint runtime { get; set; }
|
|
}
|
|
} |