Files
modernkeepass/ModernKeePass/Interfaces/ILicenseService.cs

11 lines
234 B
C#
Raw Normal View History

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