using VisionBuilder.UI.Common.Processing; namespace VisionBuilder.UI.Blazor.Services; public class BlazorLoadingService : ILoadingService { public void StartLoading(string title) { // Loading indicator managed at the Blazor host level if needed. } public void StopLoading(string title) { // Loading indicator managed at the Blazor host level if needed. } }