using System; using InABox.Core; namespace InABox.Rpc { public interface IRpcCommand { /// /// Set to if this command should be logged. /// bool Log { get; } } }