WIn_RustTools/RustTools.Core/Contracts/Services/IFileService.cs

11 lines
254 B
C#
Raw Normal View History

2024-07-14 11:24:10 +00:00
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);
}