Init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user