namespace VigilCare.Simulation; /// /// Optional post-cluster polling hook. Console hosts display scores/alerts; /// the API host passes null — polling is a display concern. /// public interface IApiPoller { Task PollAndDisplayAsync(Guid encounterId, string simTime); }