initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user