2026-04-04 13:30:13 +02:00
|
|
|
using Mvvm.Core;
|
|
|
|
|
|
|
|
|
|
namespace LogViewer.Core.ViewModels;
|
|
|
|
|
|
2026-04-05 08:00:09 +02:00
|
|
|
public class LogViewerControlViewModel : ViewModel, ILogDataStoreCore
|
2026-04-04 13:30:13 +02:00
|
|
|
{
|
|
|
|
|
#region Constructor
|
|
|
|
|
|
|
|
|
|
public LogViewerControlViewModel(ILogDataStore dataStore)
|
|
|
|
|
{
|
|
|
|
|
DataStore = dataStore;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Properties
|
|
|
|
|
|
|
|
|
|
public ILogDataStore DataStore { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|