RBLNews/RBLNews.Shared/Services/AppLifecycleService.cs
2024-09-16 09:10:31 +02:00

18 lines
333 B
C#

namespace RBLNews.Shared.Services
{
public class AppLifecycleService
{
internal Action OnResumed;
internal Action OnActivated;
public void Resumed()
{
OnResumed?.Invoke();
}
public void Activated()
{
OnActivated?.Invoke();
}
}
}