11 lines
234 B
C#
Raw Normal View History

2020-10-29 12:17:09 +02:00
using Microsoft.Extensions.Hosting;
namespace MalwareMultiScan.Api.Services.Interfaces
{
2020-10-29 16:09:56 +02:00
/// <summary>
/// Receiver hosted service.
/// </summary>
2020-10-29 12:17:09 +02:00
public interface IReceiverHostedService : IHostedService
{
}
}