Assets.Scripts.Services.Communication.CommandRegistration.CommandRegistration C# (CSharp) Method

CommandRegistration() public method

public CommandRegistration ( Action callbackMethod, Type type ) : Assets.Scripts.Services.Communication.DTOs
callbackMethod Action
type System.Type
return Assets.Scripts.Services.Communication.DTOs
        public CommandRegistration(Action<CommandDTO>  callbackMethod, Type type)
        {
            this.CallbackMethod = callbackMethod;
            this.Type = type;
        }
    }
CommandRegistration