12 lines
303 B
C#
12 lines
303 B
C#
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2024-2025 Gregory Lirent */
|
|
|
|
namespace WebmrAPI.Services.Scanners
|
|
{
|
|
public interface IScannable
|
|
{
|
|
public ScanTarget Target { get; }
|
|
public Task ScanAsync();
|
|
}
|
|
}
|