naps2/NAPS2.Lib/Dependencies/IExternalComponent.cs

12 lines
205 B
C#
Raw Permalink Normal View History

2021-12-17 22:59:54 +03:00
namespace NAPS2.Dependencies;
public interface IExternalComponent
{
2022-12-21 21:15:03 +03:00
DownloadInfo DownloadInfo { get; }
2021-12-17 22:59:54 +03:00
string Id { get; }
2021-12-17 22:59:54 +03:00
bool IsInstalled { get; }
2021-12-17 22:59:54 +03:00
void Install(string sourcePath);
}