9 lines
173 B
C#
Raw Normal View History

2020-10-29 12:17:09 +02:00
using Microsoft.Extensions.Hosting;
namespace MalwareMultiScan.Api.Services.Interfaces
{
public interface IReceiverHostedService : IHostedService
{
}
}