Files
GreadyPoang/GreadyPoang.ViewModelLayer/Interfaces/ISplashService.cs

9 lines
164 B
C#

namespace GreadyPoang.Core;
public interface ISplashService
{
Task ShowSplash(string text = "Välkommen!", int durationMs = 3000);
Task HideAsync();
}