You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
401 B

  1. using MQTTnet.Client;
  2. using MQTTnet.Protocol;
  3. namespace MQTTnet.Extensions.Rpc.Options.TopicGeneration
  4. {
  5. public class TopicGenerationContext
  6. {
  7. public string MethodName { get; set; }
  8. public MqttQualityOfServiceLevel QualityOfServiceLevel { get; set; }
  9. public IMqttClient MqttClient { get; set; }
  10. public IMqttRpcClientOptions Options { get; set; }
  11. }
  12. }