sharee.bike-App/SharedBusinessLogic/Model/Logging/ILoggingDirectoryManager.cs
2024-04-09 12:53:23 +02:00

22 lines
598 B
C#

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