Files
2026-04-05 10:34:49 +02:00

10 lines
214 B
C#

using System.Collections.ObjectModel;
namespace Serilog.Sinks.LogView.Core.Logging;
public interface ILogDataStore
{
ObservableCollection<LogModel> Entries { get; }
void AddEntry(LogModel logModel);
}