ChineseChess/ChineseChess.GUI.Core/Contracts/Services/IFileService.cs
2021-05-30 22:57:53 +08:00

12 lines
287 B
C#

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