11 lines
200 B
C#
11 lines
200 B
C#
|
// File: Services/Scanners/IScannable.cs
|
|||
|
|
|||
|
namespace WebmrAPI.Services.Scanners
|
|||
|
{
|
|||
|
public interface IScannable
|
|||
|
{
|
|||
|
public ScanTarget Target { get; }
|
|||
|
public void Scan();
|
|||
|
}
|
|||
|
}
|