namespace ZB.MOM.WW.ScadaBridge.HealthMonitoring;
///
/// Provides the identity of the current site.
/// Implemented by the Host component to supply configuration-driven site ID.
///
public interface ISiteIdentityProvider
{
/// The unique identifier of this site node.
string SiteId { get; }
}