web UI
This commit is contained in:
16
VisionBuilder.UI.Blazor/Services/BlazorLoadingService.cs
Normal file
16
VisionBuilder.UI.Blazor/Services/BlazorLoadingService.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user