namespace ZB.MOM.WW.OtOpcUa.AdminUI.Uns; /// A scripted-alarm row for the Alarms-tab table. public sealed record EquipmentAlarmRow(string ScriptedAlarmId, string Name, string AlarmType, int Severity, string PredicateScriptId, bool Enabled); /// A scripted alarm projected for editing, with the concurrency token the modal echoes back. public sealed record ScriptedAlarmEditDto( string ScriptedAlarmId, string EquipmentId, string Name, string AlarmType, int Severity, string MessageTemplate, string PredicateScriptId, bool HistorizeToAveva, bool Retain, bool Enabled, byte[] RowVersion);