using InABox.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InABox.Rpc { public interface IRpcCommandParameters : ISerializeBinary { /// /// Get a full, human-readable description of this command. /// /// The description. string? FullDescription(); /// /// Get a shortened description of this command. /// /// The description. string? ShortDescription(); } }