11 lines
249 B
C#
11 lines
249 B
C#
namespace RustTools.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);
|
|
}
|