14 lines
470 B
C#
14 lines
470 B
C#
using ZB.MOM.WW.OtOpcUa.Commons.Types;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Commons.Messages.Deploy;
|
|
|
|
/// <summary>
|
|
/// Coordinator-published event indicating that every active driver node successfully applied
|
|
/// the deployment and the row in <c>Deployment</c> has been transitioned to <c>Sealed</c>.
|
|
/// </summary>
|
|
public sealed record DeploymentSealed(
|
|
DeploymentId DeploymentId,
|
|
RevisionHash RevisionHash,
|
|
DateTime SealedAtUtc,
|
|
CorrelationId CorrelationId);
|