mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
17 lines
417 B
C#
17 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Observatory.UI.ViewModels
|
|
{
|
|
public class MainWindowViewModel : ViewModelBase
|
|
{
|
|
public MainWindowViewModel(PluginManagement.PluginManager pluginManager)
|
|
{
|
|
core = new CoreViewModel(pluginManager.workerPlugins, pluginManager.notifyPlugins);
|
|
}
|
|
|
|
public CoreViewModel core { get; }
|
|
}
|
|
}
|