namespace ZB.MOM.WW.OtOpcUa.Driver.AbLegacy.Import; /// /// Outcome of a single run. carries the /// imported tag definitions ready to drop into AbLegacyDriverOptions.Tags; /// , , and /// give the operator a single line of telemetry ("imported 142 / skipped 3 / errored 0") /// suitable for either a CLI summary or a startup-time log line. /// public sealed record RsLogixImportResult( IReadOnlyList Tags, int ParsedCount, int SkippedCount, int ErrorCount);