Files
modernkeepass/ModernKeePass/Interfaces/ILicenseService.cs

13 lines
306 B
C#
Raw Normal View History

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