Files
Gready_Poang/Gready_Poang.ViewModelLayer/Interfaces/ISplashService.cs
2025-10-11 08:15:33 +02:00

9 lines
164 B
C#

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