namespace ScadaLink.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 { public string ApplicationName { get; set; } = "ScadaLink-DCL"; public string TrustedIssuerStorePath { get; set; } = ""; public string TrustedPeerStorePath { get; set; } = ""; public string RejectedCertificateStorePath { get; set; } = ""; }