mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +00:00
16 lines
421 B
C#
16 lines
421 B
C#
using System.Collections.Generic;
|
|
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace MalwareMultiScan.Api.Data.Models
|
|
{
|
|
public class ScanResult
|
|
{
|
|
[BsonId]
|
|
[BsonRepresentation(BsonType.ObjectId)]
|
|
public string Id { get; set; }
|
|
|
|
public Dictionary<string, ScanResultEntry> Results { get; set; } =
|
|
new Dictionary<string, ScanResultEntry>();
|
|
}
|
|
} |