16 lines
369 B
C#
16 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Taloyhtio.GeneralApi.IntegrationUtility.Repositories
|
|
{
|
|
public interface IFileRepository
|
|
{
|
|
List<string> GetAllNew(string folderPath);
|
|
string GetContent(string fileName);
|
|
bool Move(string oldPath, string newPath);
|
|
}
|
|
}
|