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

11 lines
253 B
C#

using System.Collections.Generic;
namespace Inspectron.Ringbuffer.Interfaces
{
public interface IIndex
{
void Track(string filePath);
List<string> GetFilesToDelete(int allowedAmountGood,int allowedAmountBad);
}
}