mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +00:00
11 lines
230 B
C#
11 lines
230 B
C#
|
using Microsoft.Extensions.Hosting;
|
||
|
|
||
|
namespace MalwareMultiScan.Scanner.Services.Interfaces
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Scan hosted service.
|
||
|
/// </summary>
|
||
|
public interface IScanHostedService : IHostedService
|
||
|
{
|
||
|
}
|
||
|
}
|