using System;
using System.Threading.Tasks;
namespace ZB.MOM.WW.LmxProxy.Client
{
///
/// Represents a subscription to tag value changes
///
public interface ISubscription : IDisposable
{
///
/// Disposes the subscription asynchronously
///
Task DisposeAsync();
}
}