mirror of
https://github.com/LanZhan-Harmony/WindowsMusicPlayer-TheUntamedMusicPlayer.git
synced 2026-05-06 11:10:16 +08:00
11 lines
269 B
C#
11 lines
269 B
C#
namespace The_Untamed_Music_Player.Core.Contracts.Services;
|
|
|
|
public interface IFileService
|
|
{
|
|
T Read<T>(string folderPath, string fileName);
|
|
|
|
void Save<T>(string folderPath, string fileName, T content);
|
|
|
|
void Delete(string folderPath, string fileName);
|
|
}
|