using System.Collections.Generic;
namespace TINK.Model.Logging
{
public interface ILoggingDirectoryManager
{
/// Deletes files which are out of retainment scope.
void DeleteObsoleteLogs();
/// Gets the log file name.
string LogFileName { get; }
/// Gets all log files in logging directory.
/// List of log files.
IList GetLogFiles();
/// Gets path where log files are located.
/// Path to log files.
string LogFilePath { get; }
}
}