namespace ZB.MOM.WW.ScadaBridge.Commons.Messages.Instance; /// /// Command to set a static attribute value on an Instance Actor. /// Updates in-memory state and persists the override to SQLite. /// public record SetStaticAttributeCommand( string CorrelationId, string InstanceUniqueName, string AttributeName, string Value, DateTimeOffset Timestamp); /// /// Response confirming that a static attribute was set. /// public record SetStaticAttributeResponse( string CorrelationId, string InstanceUniqueName, string AttributeName, bool Success, string? ErrorMessage, DateTimeOffset Timestamp);