Implementate notifiche
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace salesbook.Shared.Core.Interface.System.Battery;
|
||||
|
||||
public interface IBatteryOptimizationManagerService
|
||||
{
|
||||
bool IsBatteryOptimizationEnabled();
|
||||
|
||||
void OpenBatteryOptimizationSettings(Action<bool> onCompleted);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace salesbook.Shared.Core.Interface.System.Network;
|
||||
|
||||
public interface INetworkService
|
||||
{
|
||||
public bool ConnectionAvailable { get; set; }
|
||||
|
||||
public bool IsNetworkAvailable();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace salesbook.Shared.Core.Interface.System.Notification;
|
||||
|
||||
public interface IShinyNotificationManager
|
||||
{
|
||||
Task RequestAccess();
|
||||
}
|
||||
Reference in New Issue
Block a user