mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
18 lines
338 B
C#
18 lines
338 B
C#
using BetterLyrics.Core.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.Core.Interfaces
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
string Description { get; }
|
|
string Author { get; }
|
|
|
|
void Initialize();
|
|
}
|
|
}
|