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