naps2/NAPS2.Lib/Dependencies/IExternalComponent.cs
2023-04-30 14:06:53 -07:00

12 lines
205 B
C#

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