IRpcCommandParameters.cs 621 B

123456789101112131415161718192021222324
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace InABox.Rpc
  8. {
  9. public interface IRpcCommandParameters : ISerializeBinary
  10. {
  11. /// <summary>
  12. /// Get a full, human-readable description of this command.
  13. /// </summary>
  14. /// <returns>The description.</returns>
  15. string? FullDescription();
  16. /// <summary>
  17. /// Get a shortened description of this command.
  18. /// </summary>
  19. /// <returns>The description.</returns>
  20. string? ShortDescription();
  21. }
  22. }