Browse Source

Changes to this file no longer needed

release/3.x.x
Paul Fake 6 years ago
committed by GitHub
parent
commit
2c6c3ac6a4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 16 deletions
  1. +0
    -16
      Source/MQTTnet.Extensions.ManagedClient/ManagedMqttApplicationMessage.cs

+ 0
- 16
Source/MQTTnet.Extensions.ManagedClient/ManagedMqttApplicationMessage.cs View File

@@ -1,16 +0,0 @@
using System;

namespace MQTTnet.Extensions.ManagedClient
{
public class ManagedMqttApplicationMessage : IEquatable<ManagedMqttApplicationMessage>
{
public Guid Id { get; set; } = Guid.NewGuid();

public MqttApplicationMessage ApplicationMessage { get; set; }
public bool Equals(ManagedMqttApplicationMessage other)
{
return Id.Equals(other.Id);
}
}
}

Loading…
Cancel
Save