8 lines
400 B
C#
8 lines
400 B
C#
namespace ZB.MOM.WW.OtOpcUa.AdminUI.Uns;
|
|
|
|
/// <summary>The UNS-line and driver options the equipment page's Details tab offers, scoped to the
|
|
/// cluster that owns a given line. Empty lists when the line can't be resolved to a cluster.</summary>
|
|
public sealed record EquipmentPickContext(
|
|
IReadOnlyList<(string Id, string Display)> Lines,
|
|
IReadOnlyList<(string Id, string Display)> Drivers);
|