basic architecture change: consul + hangfire

This commit is contained in:
Volodymyr Smirnov
2020-11-01 22:25:48 +02:00
parent 3f49c30b67
commit b918a82255
66 changed files with 571 additions and 728 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace MalwareMultiScan.Shared.Message
{
public class ScanQueueMessage
{
public string Id { get; set; }
public Uri Uri { get; set; }
}
}