namespace RustTools.Contracts.Services; public interface IFileService { T Read(string folderPath, string fileName); void Save(string folderPath, string fileName, T content); void Delete(string folderPath, string fileName); }