mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 22:25:36 -04:00
13 lines
260 B
C#
13 lines
260 B
C#
using System.Collections.Generic;
|
|
using API.DTOs;
|
|
using API.Entities;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IDirectoryService
|
|
{
|
|
IEnumerable<string> ListDirectory(string rootPath);
|
|
|
|
void ScanLibrary(LibraryDto library);
|
|
}
|
|
} |