Files
LogViewerControl/CSharp/Serilog.Sinks.LogView.Core/Logging/ILogDataStore.cs
T

10 lines
214 B
C#
Raw Normal View History

2026-04-04 13:30:13 +02:00
using System.Collections.ObjectModel;
2026-04-05 10:13:12 +02:00
namespace Serilog.Sinks.LogView.Core.Logging;
2026-04-04 13:30:13 +02:00
public interface ILogDataStore
{
ObservableCollection<LogModel> Entries { get; }
void AddEntry(LogModel logModel);
}