using System.Collections.Generic;
namespace ZB.MOM.WW.LmxProxy.Host.Domain
{
///
/// Subscription statistics for all clients and tags.
///
public class SubscriptionStats
{
///
/// Gets or sets the total number of clients.
///
public int TotalClients { get; set; }
///
/// Gets or sets the total number of tags.
///
public int TotalTags { get; set; }
///
/// Gets or sets the mapping of tag addresses to client counts.
///
public Dictionary TagClientCounts { get; set; } = new();
///
/// Gets or sets the mapping of client IDs to their statistics.
///
public Dictionary ClientStats { get; set; } = new();
}
}