mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
11 lines
199 B
C#
11 lines
199 B
C#
|
using System;
|
||
|
|
||
|
namespace MalwareMultiScan.Shared.Data.Messages
|
||
|
{
|
||
|
public class ScanRequestMessage
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
public Uri Uri { get; set; }
|
||
|
}
|
||
|
}
|