LANCommander/LANCommander.Server.Services/Abstractions/IMediaGrabberService.cs

11 lines
279 B
C#
Raw Permalink Normal View History

using LANCommander.SDK.Enums;
using LANCommander.Server.Services.Models;
2025-03-16 14:35:53 -05:00
namespace LANCommander.Server.Services.Abstractions
{
public interface IMediaGrabberService
{
Task<IEnumerable<MediaGrabberResult>> SearchAsync(MediaType type, string keywords);
}
}