Files
GreadyPoang/GreadyPoang.ViewModelLayer/Interfaces/IOverlayService.cs

8 lines
140 B
C#

namespace GreadyPoang.Core;
public interface IOverlayService
{
void ShowSplash(string text, int duration);
void HideSplash();
}