WIn_RustTools/RustTools/Contracts/Services/IFileService.cs

11 lines
249 B
C#
Raw Permalink Normal View History

2024-07-29 01:10:42 +00:00
namespace RustTools.Contracts.Services;
2024-07-14 11:24:10 +00:00
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);
}