IRPCCommand.cs 337 B

123456789101112131415161718
  1. using System;
  2. using InABox.Core;
  3. namespace InABox.Rpc
  4. {
  5. public interface IRpcCommand
  6. {
  7. /// <summary>
  8. /// Set to <see langword="true"/> if this command should be logged.
  9. /// </summary>
  10. bool Log { get; }
  11. }
  12. public interface IRpcCommand<TProperties, TResult> : IRpcCommand
  13. {
  14. }
  15. }