namespace ZB.MOM.WW.ScadaBridge.DataConnectionLayer;
///
/// Deployment-wide OPC UA application identity. Bound from the "OpcUa" section
/// of appsettings.json. Per-endpoint behavior lives on OpcUaEndpointConfig.
/// Empty paths fall back to a default under Path.GetTempPath() so dev runs
/// work without explicit configuration.
///
public class OpcUaGlobalOptions
{
/// OPC UA application name used in the application certificate and session negotiation.
public string ApplicationName { get; set; } = "ScadaBridge-DCL";
/// File system path to the trusted issuer certificate store.
public string TrustedIssuerStorePath { get; set; } = "";
/// File system path to the trusted peer certificate store.
public string TrustedPeerStorePath { get; set; } = "";
/// File system path to the rejected certificate store.
public string RejectedCertificateStorePath { get; set; } = "";
}