10 lines
No EOL
207 B
C#
10 lines
No EOL
207 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
IEnumerable<string> ListDirectory(string rootPath);
|
|
}
|
|
} |