Files
2025-07-14 12:03:59 +02:00

10 lines
224 B
C#

using System.Collections.Generic;
namespace Inspectron.Ringbuffer.Interfaces
{
public interface IFileVerifier
{
bool IsMainFile(string filePath);
List<string> LinkedFiles(string filePath);
}
}