using ZB.MOM.WW.OtOpcUa.Commons.Messages.Admin;
namespace ZB.MOM.WW.OtOpcUa.Commons.Interfaces;
///
/// Cluster-singleton-proxy client for the AdminOperationsActor. The Blazor UI calls
/// this from any host (admin or driver role); the proxy routes the request to whichever node
/// holds the admin singleton.
///
public interface IAdminOperationsClient
{
Task StartDeploymentAsync(string createdBy, CancellationToken ct);
}