mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
20 lines
427 B
C#
20 lines
427 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
|
|
namespace Teknik.ContentScanningService
|
|
{
|
|
public class ScanResult
|
|
{
|
|
public string RawResult { get; set;}
|
|
public ScanResultType ResultType { get; set; }
|
|
|
|
public ScanResult()
|
|
{
|
|
RawResult = string.Empty;
|
|
ResultType = ScanResultType.Clean;
|
|
}
|
|
}
|
|
}
|