using System; using InABox.Core; namespace InABox.Rpc { /// /// Flag an with if its execution should be logged. /// public interface IRpcLogCommand { } public interface IRpcCommand where TProperties : IRpcCommandParameters, ISerializeBinary where TResult : IRpcCommandResult { } }