11 lines
652 B
C#
11 lines
652 B
C#
using ZB.MOM.WW.OtOpcUa.Configuration.Enums;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.AdminUI.Uns;
|
|
|
|
/// <summary>A tag row for the equipment page's Tags tab table — display columns plus the id used to
|
|
/// open the edit modal. RowVersion is re-read fresh on delete (matching the tree's delete path).</summary>
|
|
public sealed record EquipmentTagRow(string TagId, string Name, string DriverInstanceId, string DataType, TagAccessLevel AccessLevel);
|
|
|
|
/// <summary>A virtual-tag row for the equipment page's Virtual Tags tab table.</summary>
|
|
public sealed record EquipmentVirtualTagRow(string VirtualTagId, string Name, string DataType, string ScriptId, bool Enabled);
|