12 lines
479 B
C#
12 lines
479 B
C#
namespace ZB.MOM.WW.ScadaBridge.DataConnectionLayer;
|
|
|
|
/// <summary>
|
|
/// Deployment-wide MxGateway defaults, bound from the "MxGateway" section of
|
|
/// appsettings.json. Per-endpoint behavior lives on MxGatewayEndpointConfig.
|
|
/// </summary>
|
|
public class MxGatewayGlobalOptions
|
|
{
|
|
/// <summary>Prefix used to derive a per-connection client registration name when the connection's ClientName is blank.</summary>
|
|
public string ClientNamePrefix { get; set; } = "scadabridge";
|
|
}
|