naps2/NAPS2.Sdk/Dependencies/IExternalComponent.cs
2021-12-17 11:59:54 -08:00

12 lines
206 B
C#

namespace NAPS2.Dependencies;
public interface IExternalComponent
{
DownloadInfo? DownloadInfo { get; }
string Id { get; }
bool IsInstalled { get; }
void Install(string sourcePath);
}