using System.Collections.ObjectModel; namespace StabilityMatrix.Avalonia.Diagnostics.LogViewer.Core.Logging; public interface ILogDataStore { ObservableCollection Entries { get; } void AddEntry(LogModel logModel); }