mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
16 lines
273 B
C#
16 lines
273 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Teknik.ContentScanningService
|
|||
|
{
|
|||
|
public enum ScanResultType
|
|||
|
{
|
|||
|
Unknown = 0,
|
|||
|
Clean = 1,
|
|||
|
VirusDetected = 2,
|
|||
|
ChildPornography = 3,
|
|||
|
Error = 4
|
|||
|
}
|
|||
|
}
|