mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
12 lines
240 B
C#
12 lines
240 B
C#
using System.Collections.Generic;
|
|
using API.DTOs;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
IEnumerable<string> ListDirectory(string rootPath);
|
|
|
|
void ScanLibrary(LibraryDto library);
|
|
}
|
|
} |