namespace ZB.MOM.WW.LmxProxy.Host.Domain { /// /// Per-client subscription statistics. /// public class ClientStats { /// /// Gets or sets the number of tags the client is subscribed to. /// public int SubscribedTags { get; set; } /// /// Gets or sets the number of delivered messages. /// public long DeliveredMessages { get; set; } /// /// Gets or sets the number of dropped messages. /// public long DroppedMessages { get; set; } } }