8 lines
164 B
C#
8 lines
164 B
C#
|
|
namespace Toolkit.Foundation
|
|
{
|
|
public interface IFileProvider
|
|
{
|
|
IReadOnlyCollection<string> Get(string path, FileProviderFilter filter);
|
|
}
|
|
} |