using System.Collections.Generic;
namespace TINK.Model.Logging
{
public class EmptyDirectoryLoggingManger : ILoggingDirectoryManager
{
public void DeleteObsoleteLogs() { }
/// Gets the log file name.
public string LogFileName { get { return string.Empty; } }
/// Gets all log files in logging directory.
/// List of log files.
public IList GetLogFiles() { return new List(); }
/// Gets path where log files are located.
/// Path to log files.
public string LogFilePath { get { return string.Empty; } }
}
}