#nullable enable
|
|
using System.IO;
|
|
|
|
namespace IPA.AntiMalware
|
|
{
|
|
public interface IAntiMalware
|
|
{
|
|
ScanResult ScanFile(FileInfo file);
|
|
ScanResult ScanData(byte[] data, string? contentName = null);
|
|
}
|
|
}
|