using System.Collections.Generic; using System.Threading.Tasks; using Windows.ApplicationModel.Store; namespace ModernKeePass.Interfaces { public interface ILicenseService { IReadOnlyDictionary Products { get; } Task Purchase(string addOn); } }