WIn_RustTools/RustTools.Core/Contracts/Services/IFileService.cs
2024-07-14 19:24:10 +08:00

11 lines
254 B
C#

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