10 lines
279 B
C#
10 lines
279 B
C#
using LANCommander.SDK.Enums;
|
|
using LANCommander.Server.Services.Models;
|
|
|
|
namespace LANCommander.Server.Services.Abstractions
|
|
{
|
|
public interface IMediaGrabberService
|
|
{
|
|
Task<IEnumerable<MediaGrabberResult>> SearchAsync(MediaType type, string keywords);
|
|
}
|
|
}
|