using System; using InABox.Core; namespace InABox.Rpc { public interface IRpcCommand<TProperties, TResult> { /// <summary> /// Set to <see langword="true"/> if this command should be logged. /// </summary> bool Log { get; } } }