Files
modernkeepass/ModernKeePass/Interfaces/ILicenseService.cs
2017-12-07 18:49:03 +01:00

11 lines
234 B
C#

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