17 lines
400 B
C#
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.
|
|
}
|
|
}
|