7 lines
195 B
C#
7 lines
195 B
C#
namespace LogViewer.Core.ViewModels;
|
|
|
|
public class LogViewerControlViewModel(ILogDataStore dataStore) : ILogDataStoreCore
|
|
{
|
|
public ILogDataStore DataStore { get; set; } = dataStore;
|
|
|
|
} |