13 lines
367 B
C#
13 lines
367 B
C#
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2024-2025 Gregory Lirent */
|
|
|
|
namespace WebmrAPI.Services.Scanners
|
|
{
|
|
public interface IScanProvider
|
|
{
|
|
public bool ProcessReadAccess { get; }
|
|
public ILogger Logger { get; }
|
|
public int GetTimeout(ScanTarget target);
|
|
}
|
|
}
|