Files
WindowsMusicPlayer-TheUntam…/The Untamed Music Player.Core/Contracts/Services/IFileService.cs
2024-08-27 15:07:06 +08:00

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);
}