Files
Gready_Poang/Gready_Poang.ViewModelLayer/Interfaces/ISplashService.cs

9 lines
165 B
C#

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