namespace ScadaLink.Commons.Messages.Deployment; /// /// Site→central response carrying the instance's currently-applied deployment /// state. If is false the instance has no /// deployed configuration at the site and / /// are null. /// public record DeploymentStateQueryResponse( string CorrelationId, string InstanceUniqueName, bool IsDeployed, string? AppliedDeploymentId, string? AppliedRevisionHash, DateTimeOffset Timestamp);