mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-23 21:12:22 +00:00
10 lines
182 B
C#
10 lines
182 B
C#
using System;
|
|
|
|
namespace MalwareMultiScan.Shared.Message
|
|
{
|
|
public class ScanQueueMessage
|
|
{
|
|
public string Id { get; set; }
|
|
public Uri Uri { get; set; }
|
|
}
|
|
} |