MqttAuthPacketProperties.cs 353 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace MQTTnet.Packets
  3. {
  4. public class MqttAuthPacketProperties
  5. {
  6. public string AuthenticationMethod { get; set; }
  7. public byte[] AuthenticationData { get; set; }
  8. public string ReasonString { get; set; }
  9. public List<MqttUserProperty> UserProperties { get; set; }
  10. }
  11. }