Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IPermissionService.cs
1using System;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
9
11{
15 [DefaultImplementation(typeof(PermissionService))]
16 public interface IPermissionService
17 {
18 Task<bool> CheckCameraPermissionAsync();
19
20 Task<bool> CheckNotificationPermissionAsync(bool SkipRequest = false);
21 }
22}
Handles checking and requesting permissions for the app.