mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
9 lines
218 B
C#
9 lines
218 B
C#
|
namespace MalwareMultiScan.Api.Data.Response
|
||
|
{
|
||
|
public class ScanBackendResponse
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public bool Online { get; set; }
|
||
|
}
|
||
|
}
|