estara/Estara.Core/Contracts/Services/IFileService.cs

11 lines
251 B
C#

namespace Estara.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);
}