mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-03-18 01:12:21 +01:00
Co-authored-by: Kieran <kieran@harkin.me> Reviewed-on: https://git.v0l.io/Kieran/void.cat/pulls/65
22 lines
489 B
C#
22 lines
489 B
C#
namespace VoidCat.Model;
|
|
|
|
/// <summary>
|
|
/// Results for virus scan of a single file
|
|
/// </summary>
|
|
public sealed class VirusStatus
|
|
{
|
|
/// <summary>
|
|
/// Time the file was scanned
|
|
/// </summary>
|
|
public DateTime ScanTime { get; init; }
|
|
|
|
/// <summary>
|
|
/// Detected virus names
|
|
/// </summary>
|
|
public string? Names { get; init; }
|
|
|
|
/// <summary>
|
|
/// If we consider this result as a virus or not
|
|
/// </summary>
|
|
public bool IsVirus { get; init; }
|
|
} |