9 lines
164 B
C#
9 lines
164 B
C#
|
|
namespace GreadyPoang.Core;
|
|
|
|
public interface ISplashService
|
|
{
|
|
Task ShowSplash(string text = "Välkommen!", int durationMs = 3000);
|
|
Task HideAsync();
|
|
|
|
} |