mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
18 lines
402 B
C#
18 lines
402 B
C#
// 2025/6/23 by Zhe Fang
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BetterLyrics.WinUI3.Events;
|
|
using BetterLyrics.WinUI3.Models;
|
|
|
|
namespace BetterLyrics.WinUI3.Services.LibWatcherService
|
|
{
|
|
public interface ILibWatcherService
|
|
{
|
|
event EventHandler<LibChangedEventArgs>? MusicLibraryFilesChanged;
|
|
}
|
|
}
|