Create a LicenseService to handle in-app purchases

This commit is contained in:
BONNEVILLE Geoffroy
2017-12-07 18:49:03 +01:00
parent a86dbf9dac
commit e25f9f4aae
7 changed files with 179 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
using Windows.ApplicationModel.Store;
namespace ModernKeePass.Interfaces
{
public interface ILicenseService
{
IReadOnlyDictionary<string, ProductListing> Products { get; }
}
}