mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
15 lines
299 B
C#
15 lines
299 B
C#
using BetterLyrics.Core.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.WinUI3.Services.PluginService
|
|
{
|
|
public interface IPluginService
|
|
{
|
|
IReadOnlyList<ILyricsProvider> Providers { get; }
|
|
|
|
void LoadPlugins();
|
|
}
|
|
}
|