don't look at me
This commit is contained in:
parent
e9f444e5b4
commit
cedbad8fba
56 changed files with 1111 additions and 294 deletions
14
backend/src/Services/ILibraryService.cs
Normal file
14
backend/src/Services/ILibraryService.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using JellyGlass.Models;
|
||||
|
||||
namespace JellyGlass.Services;
|
||||
|
||||
public interface ILibraryService
|
||||
{
|
||||
public Task<Library[]> GetLibraries();
|
||||
public Task<ItemDTO[]> GetItemsFromLibrary(string libraryName);
|
||||
|
||||
|
||||
// public Task<ItemDTO[]> GetChildrenFromItems(ItemDTO[] items);
|
||||
// public Task<ItemDTO[]> GetItemsByName(string name, string itemType);
|
||||
// public Task<ItemDTO[]> GetItemsByType(string itemType);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue