mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
539 B
C#
19 lines
539 B
C#
using Artemis.Core;
|
|
using Artemis.Core.Services;
|
|
using Stylet;
|
|
|
|
namespace Artemis.UI.Screens.ProfileEditor.Windows
|
|
{
|
|
public class NodeScriptWindowViewModel : Screen
|
|
{
|
|
public NodeScriptWindowViewModel(NodeScript nodeScript, INodeService nodeService)
|
|
{
|
|
NodeScript = nodeScript;
|
|
AvailableNodes = new BindableCollection<NodeData>(nodeService.AvailableNodes);
|
|
}
|
|
|
|
public NodeScript NodeScript { get; }
|
|
public BindableCollection<NodeData> AvailableNodes { get; }
|
|
}
|
|
}
|