21 lines
368 B
C#
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
|
||
|
|
}
|