IRPCCommand.cs 451 B

1234567891011121314151617
  1. using System;
  2. using InABox.Core;
  3. namespace InABox.Rpc
  4. {
  5. /// <summary>
  6. /// Flag an <see cref="IRpcCommand{TProperties, TResult}"/> with <see cref="IRpcLogCommand"/> if its execution should be logged.
  7. /// </summary>
  8. public interface IRpcLogCommand { }
  9. public interface IRpcCommand<TProperties, TResult>
  10. where TProperties : IRpcCommandParameters, ISerializeBinary
  11. where TResult : IRpcCommandResult
  12. {
  13. }
  14. }