JellyGlass/backend/src/Core/Interfaces/IItemService.cs

8 lines
No EOL
165 B
C#

using JellyGlass.Core.Entities;
namespace JellyGlass.Core.Interfaces;
public interface IItemService
{
public Task<Item[]> GetItemsFromLibrary(string libraryId);
}