fix(adminui): flip remaining ModbusTcp test seeds + doc comments to Modbus (review)

This commit is contained in:
Joseph Doherty
2026-06-16 19:51:56 -04:00
parent bec37848d5
commit a40c77de87
8 changed files with 11 additions and 11 deletions
@@ -21,7 +21,7 @@ public sealed class DriverInstance
/// <summary>Gets or sets the friendly name of this driver instance.</summary>
public required string Name { get; set; }
/// <summary>Galaxy | ModbusTcp | AbCip | AbLegacy | S7 | TwinCat | Focas | OpcUaClient</summary>
/// <summary>Galaxy | Modbus | AbCip | AbLegacy | S7 | TwinCat | Focas | OpcUaClient</summary>
public required string DriverType { get; set; }
/// <summary>Gets or sets a value indicating whether this driver instance is enabled.</summary>
@@ -17,7 +17,7 @@ public interface IDriver
/// <summary>Stable logical ID of this driver instance, sourced from the central config DB.</summary>
string DriverInstanceId { get; }
/// <summary>Driver type name (e.g. "Galaxy", "ModbusTcp", "AbCip"). Matches <c>DriverInstance.DriverType</c>.</summary>
/// <summary>Driver type name (e.g. "Galaxy", "Modbus", "AbCip"). Matches <c>DriverInstance.DriverType</c>.</summary>
string DriverType { get; }
/// <summary>Initialize the driver from its <c>DriverConfig</c> JSON; open connections; prepare for first use.</summary>
@@ -18,7 +18,7 @@ namespace ZB.MOM.WW.OtOpcUa.Core.Abstractions;
/// </remarks>
public interface IDriverConfigEditor
{
/// <summary>Driver type name this editor handles (e.g. "Galaxy", "ModbusTcp").</summary>
/// <summary>Driver type name this editor handles (e.g. "Galaxy", "Modbus").</summary>
string DriverType { get; }
/// <summary>