Files
HawkeyeVision/VisionBuilder.UI.Blazor/Services/BlazorLoadingService.cs
EugeneTes 83597b8763 web UI
2026-03-19 09:03:41 +01:00

17 lines
400 B
C#

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.
}
}