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