Files
2026-06-17 20:44:53 +03:00

17 lines
299 B
C#

using System.Collections.Generic;
namespace QFSW.QC
{
public interface ILogStorage
{
int MaxStoredLogs { get; set; }
IReadOnlyList<ILog> Logs { get; }
void AddLog(ILog log);
void RemoveLog();
void Clear();
string GetLogString();
}
}