2024-10-07 18:04:26 -05:00
|
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
using LANCommander.Server.Services.Models;
|
2023-11-02 01:24:42 -05:00
|
|
|
|
|
2025-03-16 14:35:53 -05:00
|
|
|
|
namespace LANCommander.Server.Services.Abstractions
|
2023-11-02 01:24:42 -05:00
|
|
|
|
{
|
|
|
|
|
|
public interface IMediaGrabberService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<IEnumerable<MediaGrabberResult>> SearchAsync(MediaType type, string keywords);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|