mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
11 lines
268 B
C#
11 lines
268 B
C#
namespace TemplateStudioSampleApp.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);
|
|
}
|