mirror of
https://github.com/abdelkader/vCardEditor
synced 2025-12-12 08:27:19 +07:00
16 lines
386 B
C#
16 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace vCardEditor.Repository
|
|
{
|
|
public interface IFileHandler
|
|
{
|
|
void MoveFile(string newFilename, string oldFilename);
|
|
bool FileExist(string filename);
|
|
string[] ReadAllLines(string filename);
|
|
void WriteAllText(string fileName, string contents);
|
|
}
|
|
}
|