bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet.Mac/Interfaces/PermissionService.cs

Summary

Maintainability
A
0 mins
Test Coverage
using NSWallet.Mac;
using NSWallet.NetStandard.Interfaces;
using Xamarin.Forms;

[assembly: Dependency(typeof(PermissionService))]
namespace NSWallet.Mac
{
    public class PermissionService : IPermission
    {
        public bool ReadWritePermission { get { return true; } }
    }
}