123456789101112131415161718 |
- using System;
- using InABox.Core;
- namespace InABox.Rpc
- {
- public interface IRpcCommand
- {
- /// <summary>
- /// Set to <see langword="true"/> if this command should be logged.
- /// </summary>
- bool Log { get; }
- }
- public interface IRpcCommand<TProperties, TResult> : IRpcCommand
- {
- }
-
- }
|