2026-04-05 10:13:12 +02:00
|
|
|
using Serilog.Sinks.LogView.Core.Logging;
|
|
|
|
|
|
|
|
|
|
namespace LogViewer.Avalonia.Extensions;
|
2026-04-04 13:30:13 +02:00
|
|
|
|
2026-04-05 08:14:33 +02:00
|
|
|
public class LogViewerControlViewModel(ILogDataStore dataStore) : ILogDataStoreCore
|
2026-04-04 13:30:13 +02:00
|
|
|
{
|
2026-04-05 08:14:33 +02:00
|
|
|
public ILogDataStore DataStore { get; set; } = dataStore;
|
|
|
|
|
|
2026-04-04 13:30:13 +02:00
|
|
|
}
|