18 lines
333 B
C#
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();
|
|
}
|
|
}
|
|
}
|