mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
|
using Plugin.Permissions;
|
|||
|
using Plugin.Permissions.Abstractions;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TestTINKLib.Mocks.Services
|
|||
|
{
|
|||
|
public class PermissionsMock : IPermissions
|
|||
|
{
|
|||
|
public async Task<PermissionStatus> CheckPermissionStatusAsync<T>() where T : BasePermission, new()
|
|||
|
{
|
|||
|
return await Task.FromResult(Plugin.Permissions.Abstractions.PermissionStatus.Granted);
|
|||
|
}
|
|||
|
|
|||
|
public Task<PermissionStatus> CheckPermissionStatusAsync(Permission permission)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool OpenAppSettings()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public Task<PermissionStatus> RequestPermissionAsync<T>() where T : BasePermission, new()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public Task<Dictionary<Permission, PermissionStatus>> RequestPermissionsAsync(params Permission[] permissions)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public Task<bool> ShouldShowRequestPermissionRationaleAsync(Permission permission)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|