10 lines
214 B
C#
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);
|
|
}
|