mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
20 lines
453 B
C#
20 lines
453 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
|
|
{
|
|
public interface ILibWatcherService
|
|
{
|
|
event EventHandler<LibChangedEventArgs>? MusicLibraryFilesChanged;
|
|
|
|
public void UpdateWatchers(List<LocalMediaFolder> folders);
|
|
}
|
|
}
|