Trapdoor
ISender.cs
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Trapdoor
{
public interface ISender
{
Task SendAlert((string, Dictionary) res, string sourceIp, string path,
string guid);
Task StoreLogs(string id, string data);
}
}