7 lines
165 B
C#
7 lines
165 B
C#
namespace VisionBuilder.UI.Common.RecipeProcessing;
|
|
|
|
public interface ILoadingService
|
|
{
|
|
void StartLoading(string title);
|
|
void StopLoading(string title);
|
|
} |