namespace ZB.MOM.WW.ScadaBridge.Commons.Messages.DataConnection;
///
/// Command to create a new data connection actor for a specific protocol.
/// Sent from DeploymentManagerActor to DCL Manager Actor.
///
public record CreateConnectionCommand(
string ConnectionName,
string ProtocolType,
IDictionary PrimaryConnectionDetails,
IDictionary? BackupConnectionDetails = null,
int FailoverRetryCount = 3);