ABStemPlayer/AudioCore/Interfaces/IAudioReaderFactory.cs

7 lines
119 B
C#

namespace AudioCore.Interfaces;
public interface IAudioReaderFactory
{
IAudioReader Create(string filePath);
}