Files
LogViewerControl/CSharp/Core/LogViewer.Core/ViewModels/LogViewerControlViewModel.cs
T
Matthias Heil 6bed9b284c initial commit
2026-04-04 13:30:13 +02:00

21 lines
368 B
C#

using Mvvm.Core;
namespace LogViewer.Core.ViewModels;
public class LogViewerControlViewModel : ViewModel, ILogDataStoreImpl
{
#region Constructor
public LogViewerControlViewModel(ILogDataStore dataStore)
{
DataStore = dataStore;
}
#endregion
#region Properties
public ILogDataStore DataStore { get; set; }
#endregion
}