PrepareClientSessionResult.cs 199 B

123456789
  1. namespace MQTTnet.Server
  2. {
  3. public class PrepareClientSessionResult
  4. {
  5. public bool IsExistingSession { get; set; }
  6. public MqttClientConnection Session { get; set; }
  7. }
  8. }