31 lines
828 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace MalwareMultiScan.Api.Data.Models
{
2020-10-29 16:09:56 +02:00
/// <summary>
/// Scan result.
/// </summary>
public class ScanResult
{
2020-10-29 16:09:56 +02:00
/// <summary>
/// Result id.
/// </summary>
[BsonId]
[BsonRepresentation(BsonType.ObjectId)]
public string Id { get; set; }
2020-10-29 16:09:56 +02:00
/// <summary>
/// Optional callback URL.
/// </summary>
public Uri CallbackUrl { get; set; }
/// <summary>
/// Result entries where key is backend id and value is <see cref="ScanResultEntry" />.
2020-10-29 16:09:56 +02:00
/// </summary>
2020-10-26 17:06:29 +02:00
public Dictionary<string, ScanResultEntry> Results { get; set; } =
new Dictionary<string, ScanResultEntry>();
}
}